题解 1466: 蓝桥杯基础练习VIP-字符串对比

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

筛选

字符串对比 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <ctype.h>#include <string.h>int main(){    char ar[11];   ……

字符串对比 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>#include<cctype>#include<cmath>#include<cstdio>usi……

WU-字符串对比 (C++代码)

摘要:这题用C++的sting流字符串来做比较起来比较方便 其中用到了小写字母转换成大写字母的函数 toupper()#include<iostream> #include<cstring> #inc……