2415 - 两个数的乘积
写一个程序,计算123×543值,并在计算机屏幕上输出。输出结构后再输出一个换行。
Input
本题无输入。
Output
写一个程序,计算123×543值,并在计算机屏幕上输出。
要求输出结果后再输出一个换行符。
Examples
Input
本题无输入样例
Output
66789
Solution C
#include<stdio.h> int main() { int a,b,c; a=123; b=543; c=a*b; printf("%d\n",c); return 0; }
Solution C++
#include<stdio.h> int main() { int a,b,c; a=123; b=543; c=a*b; printf("%d",c); return 0; }