| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 156 | A班-高思婕 | a + b | C++ | Presentation Error | 0 | 3 MS | 264 KB | 203 | 2024-11-16 11:54:05 |
#include <bits/stdc++.h> using namespace std; int main() { int n; cin>>n; for(int i = 1;i <= n;i++) { float a,b; cin>>a>>b; cout<<setprecision(2)<<fixed<<a+b<<endl; } return 0; }