摘要: 阅读全文
posted @ 2017-05-20 10:44 该☆隐 阅读(128) 评论(0) 推荐(0) 编辑
摘要: #include "stdio.h" main() { int a,b; scanf(“%d,%d”,&a,&b); printf("a=%d,b=%d\n",a,b); } #include "stdio.h" main() { int a,b; scanf("%d%*d%d",&a,&b) ; printf("a... 阅读全文
posted @ 2017-05-20 10:37 该☆隐 阅读(208) 评论(0) 推荐(0) 编辑
摘要: #include "stdio.h" main() { int a,b,t; a=2; b=3; t=a; a=b; b=t; printf("a=%d,b=%d\n",a,b); } 阅读全文
posted @ 2017-05-20 10:25 该☆隐 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-05-20 10:22 该☆隐 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-05-20 10:18 该☆隐 阅读(131) 评论(0) 推荐(0) 编辑
摘要: #include "stdio.h" main() { printf("%d,%d\n",3+2,3-2); printf("%d,%d,%f\n",3*2,3/2,3.0/2); printf("%d\n",3%2); } #include "stdio.h" main() { int i=3,j; j=i++; prin... 阅读全文
posted @ 2017-05-20 10:14 该☆隐 阅读(131) 评论(0) 推荐(0) 编辑
摘要: #include"stdio.h"main() { printf("I love music!\n"); printf("the music is \"D:\\music\\love.mp3\".\n"); } #include "stdio.h" #define PI 3.14 //符号常量 main()... 阅读全文
posted @ 2017-05-20 10:04 该☆隐 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-05-20 09:41 该☆隐 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-05-20 09:36 该☆隐 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-05-19 18:55 该☆隐 阅读(111) 评论(0) 推荐(0) 编辑