摘要:
#include int main() { int a,b,c; scanf("%d %d %d",&a,&b,&c); printf("%.3f\n",(a+b+c)/3.0); return 0; } 阅读全文
posted @ 2018-09-28 19:40
MichaelCecil
阅读(832)
评论(0)
推荐(0)
摘要:
#include int main() { printf("\\n"); return 0; } 阅读全文
posted @ 2018-09-28 19:26
MichaelCecil
阅读(434)
评论(0)
推荐(0)
摘要:
#include int main() { printf("%%d"); return 0; } 阅读全文
posted @ 2018-09-28 19:25
MichaelCecil
阅读(343)
评论(0)
推荐(0)
摘要:
#include int main() { int a,b,c; scanf("%d %d",&a,&b); c=a; a=b; b=c; printf("%d %d",a,b); return 0; } 阅读全文
posted @ 2018-09-28 19:19
MichaelCecil
阅读(538)
评论(0)
推荐(0)
摘要:
#include #include int main() { int a,b,c,s; scanf("%d",&s); a=s/100; b=s%100/10; c=s%100%10; printf("%d%d%d",c,b,a); system("pause"); return 0; } 阅读全文
posted @ 2018-09-28 19:02
MichaelCecil
阅读(702)
评论(0)
推荐(0)
摘要:
#include int main() { int a1,b1,a2,b2,s; scanf("%d:%d",&a1,&b1); scanf("%d:%d\n",&a2,&b2); s=b2-b1-1; printf("%d",s); return 0; } 阅读全文
posted @ 2018-09-28 18:28
MichaelCecil
阅读(559)
评论(0)
推荐(0)
摘要:
#include int main() { int a1,b1,c1,a2,b2,c2,s; scanf("%d-%d-%d",&a1,&b1,&c1); scanf("%d-%d-%d",&a2,&b2,&c2); s=c2-c1-1; printf("%d",s); return 0; } 阅读全文
posted @ 2018-09-28 18:22
MichaelCecil
阅读(418)
评论(0)
推荐(0)
摘要:
#include int main() { float r,h,pi; pi=3.1415926; scanf("%f %f",&r,&h); printf("Area=""%.3f",2*pi*r*r+2*pi*r*h); return 0; } 阅读全文
posted @ 2018-09-28 17:54
MichaelCecil
阅读(625)
评论(0)
推荐(0)

浙公网安备 33010602011771号