C语言训练-大、小写问题 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,k; char a[100]; gets(a); k=strl…… 题解列表 2019年04月17日 0 点赞 0 评论 291 浏览 评分:0.0
C语言训练-大、小写问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int T(){ int i=0,L; char a[50]; gets(a);…… 题解列表 2022年05月06日 0 点赞 0 评论 76 浏览 评分:0.0
C语言训练-大、小写问题-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int len,i; char str[100]; gets(str); l…… 题解列表 2020年11月22日 0 点赞 0 评论 294 浏览 评分:0.0
1124: C语言训练-大、小写问题 摘要:此题关键是使用isupper()函数,另外注意读数据使用getline()。#include<bits/stdc++.h> using namespace std; int main(){ …… 题解列表 2021年12月10日 0 点赞 0 评论 134 浏览 评分:0.0
C语言训练-大、小写问题-题解(C语言代码) 摘要:本人小白 错误之处还望多多指教 谢谢! ```c #include #include //函数声明 char myself_1(char ch_1[],char ch_2[]); …… 题解列表 2019年12月29日 0 点赞 0 评论 256 浏览 评分:0.0
ctype库函数 摘要:参考代码:#include <stdio.h> #include <ctype.h> int main() { int i=0; char a[101]; gets…… 题解列表 2019年01月12日 0 点赞 0 评论 474 浏览 评分:0.0
C语言训练-大、小写问题 (Java代码) 摘要:解题思路:注意事项:参考代码: import java.util.Scanner; public class C1124 { public static void main(String[…… 题解列表 2018年03月16日 1 点赞 0 评论 548 浏览 评分:0.0
C语言训练-大、小写问题-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char a[100]; gets(a); int l=strlen(a…… 题解列表 2020年07月18日 0 点赞 0 评论 181 浏览 评分:0.0
1124: C语言训练-大、小写问题 摘要:解题思路:注意事项: 参考代码:print(input().lower())…… 题解列表 2024年04月19日 0 点赞 0 评论 116 浏览 评分:0.0
【优质解】字符串的大小写转换功能(多函数调用) 摘要:方法一:使用c语言头文件ctype.h库里的tolower函数把字符串大写转换成小写程序结构:自定义三个函数,一个输入字符串,一个处理字符串,一个输出处理之后的字符串,最后再主函数中调用这三个函数参考…… 题解列表 2024年07月25日 0 点赞 0 评论 175 浏览 评分:0.0