编程学习网为您整理以下代码实例,主要实现:使用变量值进行简单计算,希望可以帮到各位朋友。
#include <stdio.h>
int main(voID) {
int total;
int cats;
int dogs;
int ponIEs;
int others;
cats = 4;
dogs = 3;
ponIEs = 5;
others = 6;
total = cats + dogs + ponIEs + others;
printf("We have %d pets in total\n", total); // Output the result
return 0;
}
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!