| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 25556 | 操涵宇 | 计算(a+b)/c的值 | C++ | Wrong Answer | 0 MS | 244 KB | 128 | 2023-08-25 21:24:57 |
#include<iostream> using namespace std; int main() { int a,b,c,d=0; cin>>a>>b>>c; d=a+b/c; cout<<d; return 0; }