Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
109 | A班-许锘林 | a + b | C++ | Accepted | 100 | 3 MS | 260 KB | 248 | 2024-11-16 10:49:39 |
#include <bits/stdc++.h> using namespace std; int main() { int n; cin>>n; for(int i = 0;i < n;i++) { double a,b; cin>>a>>b; printf("%.2f",a + b); cout<<endl<<endl; } return 0; }