Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
4614 | 董语涵 | 计算(a+b)/c的值 | C++ | No Test Data | 0 MS | 0 KB | 175 | 2023-01-12 15:53:17 |
#include<iostream> using namespace std; int main(){ int a; int b; int c; //float result = (a+b)/c; cin >> a >> b >> c; cout << (double) (a+b)/c; return 0; }