摘要: #include int main() { printf("***************\n\n Very Good!\n\n***************"); return 0; } 阅读全文
posted @ 2018-09-13 23:38 Estwind 阅读(1266) 评论(0) 推荐(0)
摘要: #include int main() { int a,b; scanf("%d %d",&a,&b); printf("%d",a-b); return 0; } #include int main() { int a,b; scanf("%d",&a); scanf("%d",&b); printf("%d",a-b);... 阅读全文
posted @ 2018-09-13 23:26 Estwind 阅读(330) 评论(0) 推荐(0)
摘要: #include int main() { int a,b; scanf("%d",&a); scanf("%d",&b); printf("%d",a+b); return 0; } #include int main() { int a,b; scanf("%d %d",&a,&b); printf("%d",a+b);... 阅读全文
posted @ 2018-09-13 23:22 Estwind 阅读(433) 评论(0) 推荐(0)
摘要: #include #include int main() { printf("%.2f\n",1.00+sqrt(3.00)/(4.00-2.10)); return 0; } 阅读全文
posted @ 2018-09-13 22:12 Estwind 阅读(260) 评论(0) 推荐(0)
摘要: #include int main() { printf("%.1f\n",8.0/5); return 0; } 阅读全文
posted @ 2018-09-13 22:01 Estwind 阅读(270) 评论(0) 推荐(0)
摘要: #include int main() { printf("%d\n",12/2); return 0; } 阅读全文
posted @ 2018-09-13 21:57 Estwind 阅读(288) 评论(0) 推荐(0)
摘要: #include int main() { printf("%d\n",9*10); return 0; } 阅读全文
posted @ 2018-09-13 21:46 Estwind 阅读(205) 评论(0) 推荐(0)
摘要: #include int main() { printf("%d\n",10-7); return 0; } 阅读全文
posted @ 2018-09-13 21:36 Estwind 阅读(200) 评论(0) 推荐(0)
摘要: #include <stdio.h> int main() { printf("Nice to meet you!"); return 0; } 阅读全文
posted @ 2018-09-13 21:27 Estwind 阅读(205) 评论(0) 推荐(0)
摘要: #include int main() { printf("Hello World!\n"); return 0; } 阅读全文
posted @ 2018-09-13 21:24 Estwind 阅读(180) 评论(0) 推荐(0)