1204 大小写转换111111111
摘要:解题思路: 小转大upper()注意事项:参考代码:a=input()b=input()c=input()a1=a.upper()b1=b.upper()c1=c.upper()print(a1)pr……
2025/8/18刷题记录
摘要:解题思路:End of file意思是输入不为null注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){&nb……
莉露C语言编写题解 1204: 大小写转换
摘要:解题思路:'A'=65;'Z'=90;'a'=97;'z'=122注意事项:str[strcspn(str, "\n"……
莉露C++编写题解 1204: 大小写转换
摘要:解题思路:如C语言注意事项:str[i] != '\0'也可写作i<str.size()参考代码:#include<iostream>#include<cstd……