BC47. (a+b-c)*d的计算问题
描述
这是一个非常简单的题目,意在考察你编程的基础能力。千万别想难了哦。输入为一行,包括了用空格分隔的四个整数a、b、c、d(0 < a, b, c, d < 100,000)。输出为一行,为“(a+b-c)*d”的计算结果。
输入描述
输入为一行,用空格分隔的四个整数a、b、c、d(0 < a, b, c, d < 100,000)。输出描述
输出为一行,为“(a+b-c)*d”的计算结果。示例1
输入:
1 3 2 4
输出:
8
C 解法, 执行用时: 1ms, 内存消耗: 328KB, 提交时间: 2021-08-31
#include<stdio.h> int main(void){ int a,b,c,d; scanf("%d %d %d %d",&a,&b,&c,&d); printf("%d",(a+b-c)*d); return 0; }
C 解法, 执行用时: 1ms, 内存消耗: 368KB, 提交时间: 2020-08-01
#include<stdio.h> int main() { int a = 0; int b = 0; int c = 0; int d = 0; scanf("%d%d%d%d",&a,&b,&c,&d); printf("%d\n",(a+b-c)*d); return 0; }
C 解法, 执行用时: 1ms, 内存消耗: 372KB, 提交时间: 2021-01-31
#include<stdio.h> int main() { int a,b,c,d; scanf("%d %d %d %d",&a,&b,&c,&d); printf("%d",(a+b-c)*d); return 0; }
C 解法, 执行用时: 1ms, 内存消耗: 372KB, 提交时间: 2020-11-23
#include <stdio.h> int main(){ int a=0, b=0, c=0,d=0; scanf("%d%d%d%d",&a,&b,&c,&d); int sum=0; sum=(a+b-c)*d; printf("%d\n",sum); return 0; }
C 解法, 执行用时: 1ms, 内存消耗: 372KB, 提交时间: 2020-08-14
#include<stdio.h> main() { int a,b,c,d,e; scanf("%d%d%d%d",&a,&b,&c,&d); e=(a+b-c)*d; printf("%d\n",e); }