题解 | #(a+b-c)*d的计算问题#
(a+b-c)*d的计算问题
http://www.nowcoder.com/practice/9df4b80fc3ab475288e5c26972440e1b
#include using namespace std; int main(){ int a,b,c,d,result; cin>>a>>b>>c>>d; result=(a+b-c)*d; cout<<result; }
(a+b-c)*d的计算问题
http://www.nowcoder.com/practice/9df4b80fc3ab475288e5c26972440e1b
#include using namespace std; int main(){ int a,b,c,d,result; cin>>a>>b>>c>>d; result=(a+b-c)*d; cout<<result; }
相关推荐