题解 1204: 大小写转换

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

筛选

大小写转换 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> #include<cmath> #include<algorithm> using nam……

大小写转换 (C语言代码)

摘要:解题思路:简单写写,参考assic表注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[150]; int l,i; whi……

ASCII码和toupper函数的结合

摘要:解题思路:用strlen求出本次输入的数组长度再根据ASCII码对应的小写字母范围用toupper函数调整注意事项:函数原型:extern int toupper(int c);在ctype.h文件中……