【算法竞赛-入门经典】计算并输出1+2的值

1.练习目的:

计算并输出1+2的值

2.源码:

1 #include <stdio.h>
2 int main()
3 {
4 
5     printf("%d
",1+2);
6     return 0;
7 }

3.总结:

略...

原文地址:https://www.cnblogs.com/Exesoft-Mike/p/8227460.html