题解 1124: C语言训练-大、小写问题

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

-大、小写问题(简单暴力

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){     char a[50];     int i=0;     gets(a);     while(a[i]……

1124: C语言训练-大、小写问题

摘要:此题关键是使用isupper()函数,另外注意读数据使用getline()。#include<bits/stdc++.h> using namespace std; int main(){   ……

C语言训练-大、小写问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int T(){     int i=0,L;    char a[50];    gets(a);……

C语言训练-大、小写问题 (C语言代码)

摘要:解题思路:注意事项:这道题有个隐藏的坑就是你输入的字符串会有空格,所以处理输入输出的时候要注意参考代码:#include<bits/stdc++.h>  using namespace std; ……