容易理解的C语言代码 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> void fun(char a[]) { for (int i = 0;…… 题解列表 2021年04月07日 0 点赞 0 评论 130 浏览 评分:0.0
大、小写问题 3行代码解决 摘要: public class 大小写问题 { public static void main(String[] args) { Scanner sc = new Scan…… 题解列表 2021年04月01日 0 点赞 0 评论 319 浏览 评分:0.0
改学python吧!!! 摘要:`````python #1124 大小写问题 st = input() print(st.lower()) ````` //凑字数、凑字数、凑字数、凑字数、凑字数、凑字数:kissin…… 题解列表 2021年03月05日 0 点赞 0 评论 364 浏览 评分:9.9
C语言训练-大、小写问题-题解(C语言代码) 摘要:#include<stdio.h> #include<string.h> int main() { char str[100]; int i,k;//变量的定义 gets(str)…… 题解列表 2021年02月19日 0 点赞 0 评论 151 浏览 评分:0.0
简便易懂c代码 摘要:解题思路:直接头文件代入参考代码:#include<stdio.h>#include<ctype.h>int main(){ char a[100]; int i; gets(a);…… 题解列表 2021年02月16日 0 点赞 0 评论 406 浏览 评分:9.9
C语言训练-大、小写问题-题解(C语言代码) 摘要:解题思路: 注意事项:读入用gets可以读入空格,cin遇到回车或者空格就结束了。 参考代码: ```cpp #include using namespace std; ch…… 题解列表 2021年02月04日 0 点赞 0 评论 357 浏览 评分:0.0
C语言训练-大、小写问题-题解(C语言代码) 摘要:解题思路:和基础题没有啥区别,if判断就好注意事项:注意要求是以回车为结尾,所以我用gets参考代码:#include<stdio.h>#include<string.h> int main() { …… 题解列表 2021年01月29日 0 点赞 0 评论 466 浏览 评分:9.9
C语言训练-大、小写问题-题解(C语言代码)(一维数组) 摘要:需要用到strlen,头文件为string.h ```c #include #include//用到关键字strlen int main() { char arr[100];//字…… 题解列表 2021年01月27日 0 点赞 0 评论 357 浏览 评分:0.0
C语言训练-大、小写问题-题解(Java代码) 摘要:解题思路:注意事项:参考代码: Scanner sc=new Scanner(System.in); String s=sc.nextLine(); char[] arr=…… 题解列表 2021年01月25日 0 点赞 1 评论 303 浏览 评分:9.9
C语言训练-大、小写问题-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include "stdio.h"#include "string.h"// 题目:输入一串字符,将其中的大写变成小写,若不为大写则原样输出// 输入:任意字符串(长度…… 题解列表 2021年01月18日 0 点赞 0 评论 315 浏览 评分:0.0