标签:style blog class code java javascript color int rgb 代码 title
题目:已知三个整型数8,12,6,按公式s=a+b*c计算,并显示结果
思路:定义三个整型变量a,b,c
定义一个变量s用来保存运算结果
输出
程序:
1 #include <stdio.h> 2 3 void main() 4 { 5 int a = 8; 6 int b = 12; 7 int c = 6; 8 int s = 0; 9 10 s = b*c ; //s用来保存b*c 11 s += a; //s=a+b*c 12 printf("a+b*c=%d\n",s); 13 }
标签:style blog class code java javascript color int rgb 代码 title
原文地址:http://www.cnblogs.com/StytleOfTaotianIT/p/3702375.html