Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
97413 | 江梵睿 | 07大小写转换 | C++ | Compile Error | 0 MS | 0 KB | 227 | 2024-11-15 19:06:05 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() using namespace std; int main(){ char a,b; cin>>a; if(a>97){ b=a-26; } else{ b=a+26; } cout<<b;
Main.cc: In function 'int main()': Main.cc:13:12: error: expected '}' at end of input cout<