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