零起点学算法03——超简单模仿算术题


 

Description

计算机计算能力很强哦。 
让计算机帮你算其实也很容易,不过要学好计算机语言哦。 
下面请看一个例子:要求计算机计算1+2的值并输出。 
这个程序非常简单,请看下面蓝色字体的就是程序代码: 
#include <stdio.h>
int main()
{
printf("%d\n",1+2);
return 0;
}

 

Input

没有输入

 

Output

输出10-7的值

 

Sample Output

<span style="color:#333333"><span style="color:#333333">3
</span></span>

 题目分析:萌新题……


#include<stdio.h>
 
int main()
{
    printf("%d",10-7);
    return 0;
}