1097:零起点学算法04——再模仿一个算术题
1097: 零起点学算法04——再模仿一个算术题
Time Limit: 1 Sec Memory Limit: 128 MB 64bit IO Format: %lldSubmitted: 2627 Accepted: 2202
[Submit][Status][Web Board]
Description
上题会模仿了吧。再来模仿一个。
现在要求你模仿一个乘法的算术题
Input
没有输入
Output
输出9乘以10的值
Sample Output
90
Source
1 #include <stdio.h> 2 3 int main() 4 { 5 6 printf("%d\n",9*10); 7 8 return 0; 9 10 }