题解 | (a+b-c)*d的计算问题
(a+b-c)*d的计算问题
https://www.nowcoder.com/practice/9df4b80fc3ab475288e5c26972440e1b
#include <stdio.h> int main() { int a, b, c, d = 0; scanf("%d %d %d %d",&a, &b, &c, &d); printf("%d",(a + b - c) * d); return 0; }
(a+b-c)*d的计算问题
https://www.nowcoder.com/practice/9df4b80fc3ab475288e5c26972440e1b
#include <stdio.h> int main() { int a, b, c, d = 0; scanf("%d %d %d %d",&a, &b, &c, &d); printf("%d",(a + b - c) * d); return 0; }
相关推荐