摘要:
一种方法,记录一下,以便日后查找……Problem DescriptionThe three hands of the clock are rotating every second and meeting each other many times everyday. Finally, they ... 阅读全文
摘要:
除了最简单的三变量法外还有一种不用参数的交换法#include int main(){ int a,b; scanf("%d%d",&a,&b); a=a+b; b=a-b; a=a-b; printf("%d %d\n",a,b); return 0;}这种方法范围窄,只有... 阅读全文
摘要:
错误:#include #include int main(){ int a; int b,c,d; scanf("%d",&a); b=a-100*a/100-10*(a/10-10*a/100); c=a/10-10*a/100; d=a/100; printf("%d%d%d\n",b... 阅读全文
摘要:
#include #include int main(){ printf("%f",8.0/5.0); system("pause"); return 0;}no.18.0/5.0改成8/5结果:0.000000no.2%f改成%d结果-1717986918 阅读全文
摘要:
开始我以为是一秒一秒动,后来才想到是连续的本题目采用解方程方法 利用22针的度数差值函数 解方程Vs = 6度每秒 (60秒走一圈360度 360/60=6)Vm = 1/10度每秒(3600秒,一个小时走一圈, 360/3600=0.1)Vh = 1/120度每秒(12小时走一圈,360/(360... 阅读全文
摘要:
超时原因,注释内为超时代码for(i=begin;imid&&(a[i].x-a[mid].x)#include #include typedef struct Position{ double x; double y; struct Position *next;}Position;double ... 阅读全文
摘要:
#include#include#includetypedef struct Color{ char name[16]; int num; struct Color *next;}Color,*COLOR;void Init(Color *head){ char a[16]="0"; head->n... 阅读全文
摘要:
如有一个类Color,有成员变量nextColor *head;只是定义一个指针,不能使用head->next;除非head=(Color *)malloc(sizeof(COLOR)); 阅读全文
摘要:
#includeint main(){ int c[51]={1,1}; int time; int a,b,n; int i; while(scanf("%d %d %d",&a,&b,&n)!=EOF){ if(a==0&&b==0&&n==0) break; a%=7; b%=7; ... 阅读全文
摘要:
1005AC+解题思路分析:1,题中(1 #define M 52intmain(){ inta,b,n,i,f[M]={0,1,1},t; while(scanf("%d %d %d",&a,&b,&n),a!=0||b!=0||n!=0) { a%=7;b%=7; for(i=3;i4)brea... 阅读全文