2405 - 1+2
写一个程序,计算1+2的值,并在计算机屏幕上输出。
Input
本题无输入。
Output
写一个程序,计算1+2值,并在计算机屏幕上输出。行末没有多余的空格与换行符。
Examples
Input
本题无输入样例
Output
3
Solution C
#include<stdio.h> int main() { int a,b,c; a=1; b=2; c=a+b; printf("%d",c); }
Solution C++
#include<stdio.h> int main() { int a,b,c; a=1; b=2; c=a+b; printf("%d",c); return 0; }