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