习题(3-3) 计算(a+b)*c的值
Posted yfceshi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了习题(3-3) 计算(a+b)*c的值相关的知识,希望对你有一定的参考价值。
|
||||||||||||||||||||||||||
#include <stdio.h> int main(){ int a, b, c; scanf("%d%d%d", &a, &b, &c); printf("%d\n", (a + b)*c); return 0; } |
以上是关于习题(3-3) 计算(a+b)*c的值的主要内容,如果未能解决你的问题,请参考以下文章