- 博客(11)
- 收藏
- 关注
原创 C语言实验——逆置正整数
Problem Description输入一个三位正整数,将它反向输出。 Input3位正整数。 Output逆置后的正整数。 Example Input123 Example Output321 Hint注意130逆置后是31 Authorcrq#include <stdio.h>int main(){ int a,b,c,m,n; scanf("%d", &m);
2017-10-26 18:38:01 1870
原创 C语言实验——交换两个整数的值(顺序结构)
Problem Description交换两个变量的值,由终端输入两个整数给变量x、y,然后交换x和y的值后,输出x和y。 Input从键盘输入两个整数变量x和y; Output在交换x、y的值后将x和y输出! Example Input4 6 Example Output6 4 HintAuthor#include <stdio.h>int main(){ int a,b,c;
2017-10-26 18:36:14 1891
原创 C语言实验——计算A+B(顺序结构)
#include <stdio.h>int main(){ int a,b,c; scanf("%d %d",&a, &b); c=a+b; printf("%d\n",c); return 0;}
2017-10-16 09:18:49 809
原创 A+B Problem
#include <stdio.h>int main(){ int a,b; scanf("%d %d",&a, &b); printf("%d\n",a+b); return 0;}
2017-10-16 09:13:45 232
原创 C语言实验——求两个整数之和
#include <stdio.h>#include <stdlib.h>int main(){ int a = 123,b = 456; printf("sum is %d",a+b); return 0;}
2017-10-16 08:58:39 4194
原创 C语言实验——打印图形
#include <stdio.h>#include <stdlib.h>int main(){ printf("******************************\n\n Very good!\n\n******************************"); return 0;}
2017-10-16 08:52:34 1516
原创 C语言实验——用*号输出字母C的图案
#include <stdio.h>#include <stdlib.h>int main(){ printf("*****\n*\n*\n*\n*****\n"); return 0;}
2017-10-16 08:48:33 5523
原创 C语言实验——图形输出(字符常量练习)
#include <stdio.h>#include <stdlib.h>int main(){ printf("#\n##\n###\n####\n#####\n######\n"); return 0;}
2017-10-16 08:44:56 1009
原创 C语言实验——输出字符串
#include #include int main(){ printf("This is a C program.\n"); return 0;}
2017-10-16 08:32:57 345
转载 欢迎使用CSDN-markdown编辑器
欢迎使用Markdown编辑器写博客本Markdown编辑器使用StackEdit修改而来,用它写博客,将会带来全新的体验哦:Markdown和扩展Markdown简洁的语法代码块高亮图片链接和图片上传LaTex数学公式UML序列图和流程图离线写博客导入导出Markdown文件丰富的快捷键快捷键加粗 Ctrl + B 斜体 Ctrl + I 引用 Ctrl
2017-10-16 08:24:34 125
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人