C语言训练-大、小写问题-题解(C语言代码) 摘要: 用一个函数 tolower() 这是让字母有大写转为小写,还有 #inclue 没了,当然不能用 scanf() 函数输入,用 gets() 函数输入 因为是按一下回车。 代码: …… 题解列表 2020年03月13日 0 点赞 0 评论 294 浏览 评分:0.0
C语言训练-大、小写问题-题解(C++代码) 看这里!!!! 快来啊!!!!!!!简单易懂!!!!! 摘要: #include #include using namespace std; int main() { string word; getline(cin, word); …… 题解列表 2020年03月07日 0 点赞 0 评论 457 浏览 评分:6.0
C语言训练-大、小写问题-题解(C语言代码) 摘要:## ASCII码中大写字母比小写字母小32,先判断字符是不是大写字母,是:字符=字符+32,不是:判断下一个字符,直到判断到字符串末尾'\0'结束 ```c #include #incl…… 题解列表 2020年03月06日 0 点赞 0 评论 547 浏览 评分:9.9
C语言训练-大、小写问题-题解(Java代码)超简单 摘要:```java 喜欢java就是因为java里面有许多string类方法可以直接调用,在这个题目中直接用toLowerCase(),就可以直接把大写字母转化成小写字母 import java.ut…… 题解列表 2020年02月29日 0 点赞 0 评论 371 浏览 评分:9.9
JakeLin-题解1124:C语言训练-大、小写问题 (C++代码) 摘要:```cpp #include #include using namespace std; int main(){ char s[100]; gets(s); for(int i=…… 题解列表 2020年02月16日 0 点赞 2 评论 508 浏览 评分:8.0
C语言训练-大、小写问题-题解(Python代码) 摘要: x=input(str()) for i in x: if('A'…… 题解列表 2020年02月16日 0 点赞 0 评论 383 浏览 评分:0.0
C语言训练-大、小写问题-题解(C语言代码) 摘要:/* 问题 1124: 【C语言训练】大、小写问题 */ ```c #include #include #include int main() { char a[100];…… 题解列表 2020年02月12日 0 点赞 0 评论 587 浏览 评分:9.9
C语言训练-大、小写问题-题解(C语言代码) 摘要:对于本题仅需要将字符串长度求出,通过循环判断输出即可 ```c #include #include int main() { int i,A; char a[101]; gets…… 题解列表 2020年02月11日 0 点赞 3 评论 1775 浏览 评分:9.6
getline读空格(12%看这里) 摘要:```cpp #include #include using namespace std; int main() { string a; getline(cin,a);//可以读空格…… 题解列表 2020年02月08日 0 点赞 4 评论 895 浏览 评分:8.0
C语言训练-大、小写问题-题解(C语言代码) 摘要: #include int main() { int i; char a[100]; gets(a); …… 题解列表 2020年02月02日 0 点赞 0 评论 243 浏览 评分:0.0