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

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

筛选

C语言训练-大小写问题

摘要:参考代码:#include <stdio.h>#include<ctype.h>#include<string.h>int main(){   char a[100] = {&#39;\0&#39;}……

简单易理解的思路

摘要:题目只是为了将大写改成小写,只要是控制原本字符数组中大写字母直接+32变成小写就好了 #include int main() { int i; char a[128]; ……

c语言超详解

摘要:解题思路:基本同上注意事项:充分的函数利用参考代码:#include<stdio.h>#include<ctype.h>#include<string.h> int main(){ char a[10……

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

摘要:解题思路:注意事项:参考代码:傻逼题目限制得put,get才能通过#include<iostream>#include<cstring>using namespace std;int main(){ ……