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