| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 122869 | 左锶焜 | 07大小写转换 | C++ | Wrong Answer | 1 MS | 268 KB | 446 | 2025-06-21 17:40:02 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<iomanip> #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int a,c,d,s; cin>>a>>c>>d>>s; cout<<setw(11)<<a<<endl; cout<<setw(11)<<"+ c"<<endl; cout<<"-----------"<<endl; cout<<setw(11)<<s; return 0; }
------Input------
B
------Answer-----
b
------Your output-----
0 + c ----------- 0