Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
29773 | 奚晨瑞 | 计算(a+b)*c的值 | C++ | Accepted | 0 MS | 252 KB | 125 | 2023-11-03 15:30:44 |
#include<iostream> using namespace std; int main() { int a,b,c,d; cin>>a>>b>>c; d=(a+b)*c; cout<<d; return 0; }