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