题解 | #大小写转换#
大小写转换
https://www.nowcoder.com/practice/4e089ee8966a4ed4b306f64e68d45264
#include <cctype>
#include <cstdio>
#include <iostream>
using namespace std;
int main() {
char ch;
while ((ch=getchar())!=EOF) {
getchar();
ch=tolower(ch);
cout<<ch<<endl;
}
return 0;
}


SHEIN希音公司福利 356人发布