Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
332898 | 陈熙 | 【C1-4】计算(a+b)*c的值 | C++ | Wrong Answer | 0 | 3 MS | 248 KB | 114 | 2025-07-15 15:40:16 |
#include<iostream> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; cout<<(a+b)*c; return 0; }