Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
40911 | lmz120809 | 将字符串中的小写字母转换成大写字母 | C++ | Compile Error | 0 MS | 0 KB | 139 | 2024-02-18 11:12:57 |
#include<iostream> #include<cstring> using namespace std; int main() { char a[110]; cin>>a; strupr(a); cout<<a; return 0; }