2018年9月26日

c++减法入门

摘要: #include"stdio.h"main(){ int a,b,c;scanf("%d%d",&a,&b);c=a-b; printf("c=%d\n",c);} 阅读全文

posted @ 2018-09-26 14:05 大锤a 阅读(967) 评论(0) 推荐(0)

C++除法入门

摘要: #include"stdio.h"main(){ int a,b,c;scanf("%d%d",&a,&b);c=a/b; printf("c=%d\n",c);} 阅读全文

posted @ 2018-09-26 14:01 大锤a 阅读(1457) 评论(0) 推荐(0)

C++乘法入门

摘要: #include"stdio.h"main(){ int a,b,c;scanf("%d%d",&a,&b);c=a*b; printf("c=%d\n",c);} 阅读全文

posted @ 2018-09-26 14:00 大锤a 阅读(1009) 评论(0) 推荐(0)

c++算法入门

摘要: #include"stdio.h"main(){ int a,b,c;scanf("%d%d",&a,&b); c=a+b; printf("c=%d\n",c);} 阅读全文

posted @ 2018-09-26 13:58 大锤a 阅读(119) 评论(0) 推荐(0)

第一课 c++入门

摘要: #include"stdio.h"main(){printf("显示内容");} 阅读全文

posted @ 2018-09-26 13:33 大锤a 阅读(71) 评论(0) 推荐(0)

导航