#include using namespace std;#define MAXN 4int
main(){ //char arr[MAXN] = {0}; char arr[MAXN]; memset(arr,0,MAXN); while (cin
>> arr) {...
分类:
其他好文 时间:
2014-05-14 02:32:38
阅读次数:
327
#include #include #include using namespace
std;int main(){ double x1,y1,x2,y2; double result; while
(cin>>x1>>y1>>x2>>y2) { result ...
分类:
其他好文 时间:
2014-05-14 02:02:49
阅读次数:
242
1 /** 2 大意: 求[a,b] 之间 phi(a) + phi(a+1)...+ phi(b);
3 思路: 快速求欧拉函数 4 **/ 5 6 #include 7 #include 8 using namespace std; 9 #define Max
300000010 11 ...
分类:
其他好文 时间:
2014-05-14 00:47:07
阅读次数:
287
1 /*** 2
对于给出的n个询问,每次求有多少个数对(x,y),满足a≤x≤b,c≤y≤d,且gcd(x,y) = k,gcd(x,y)函数为x和y的最大公约数 3 **/
4 #include 5 #include 6 #include 7 8 using namespace std...
分类:
其他好文 时间:
2014-05-13 22:50:14
阅读次数:
370
1 题目大意给出一个n,求sum(gcd(i,j),014 #include 15 using
namespace std;16 #define Max 100000017 18 long long phi[Max+5],ans[Max+5];19 int
prime[Max/3];20 bool....
分类:
其他好文 时间:
2014-05-13 22:40:58
阅读次数:
251
1. 批量改变文件内容://批量改变输出文件内容#include #include #include
using namespace std;int main(){ ifstream input("D:pos_img.txt"); ofstream
output("D:pos_image...
分类:
编程语言 时间:
2014-05-13 22:29:37
阅读次数:
458
using System;using System.IO;using
System.Reflection;using System.Runtime.InteropServices;using
System.Text;namespace Souxuexiao.Cache{public static c...
分类:
数据库 时间:
2014-05-13 22:28:38
阅读次数:
561
1 /** 2 程序员调bug思路: 一共有四种情况,1、 1个原有的bug
在原有的分类中2、 1个原有的bug 在新的分类中3、 1个新的bug 在原有的分类中4、 1个新bug 在新的分类中 3 **/ 4 #include 5
#include 6 using namespace s...
分类:
其他好文 时间:
2014-05-13 22:07:54
阅读次数:
277
1 /** 2 斯特林(Stirling)公式: 3 4 求 n! 的位数 5 6
ceil函数的作用是求不小于给定实数的最小整数。 7 **/ 8 #include 9 #include 10 #include 11 using
namespace std;12 const doubl...
分类:
其他好文 时间:
2014-05-13 22:06:51
阅读次数:
253
1 #include 2 #include 3 using namespace std; 4
5 int main() 6 { 7 int year,month,day; 8 9 char a;10 int days_of_month1[13] =
{0,31,29...
分类:
其他好文 时间:
2014-05-13 22:03:48
阅读次数:
375