Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
18288 | 张熠欣 | 计算(a+b)*c的值 | C++ | Compile Error | 0 | 0 MS | 0 KB | 132 | 2021-04-14 19:55:31 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; cout<<"(a+b)*c" return 0; }