解题思路:
注意事项:
参考代码:
#include <bits/stdc++.h> using namespace std; int main() { int a; cin>>a; for(int i=1; i<=a; i++) { string str; cin>>str; int n=str.size(); if(str[0]>=97) { cout<<char(str[0]-32); } else{ cout<<str[0]; } for(int i=1; i<n; i++) { if(str[i]<=90&&str[i]>=65) { cout<<char(str[i]+32); } else { cout<<str[i]; } } cout<<endl; } return 0; }
0.0分
1 人评分
C语言程序设计教程(第三版)课后习题8.1 (C语言代码)浏览:443 |
成绩转换 (C语言代码)浏览:1048 |
C语言程序设计教程(第三版)课后习题6.3 (C语言代码)浏览:687 |
简单的a+b (C语言代码)浏览:661 |
The 3n + 1 problem (C语言代码)浏览:603 |
1113题解浏览:823 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:903 |
简单的a+b (C语言代码)浏览:457 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:537 |
C语言程序设计教程(第三版)课后习题11.8 (C语言代码)浏览:756 |