C语言训练-大、小写问题-题解(C语言代码)
摘要:#include<stdio.h>
#include<string.h>
int main()
{
char str[100];
int i,k;//变量的定义
gets(str)……
改学python吧!!!
摘要:`````python
#1124 大小写问题
st = input()
print(st.lower())
`````
//凑字数、凑字数、凑字数、凑字数、凑字数、凑字数:kissin……
大、小写问题 3行代码解决
摘要: public class 大小写问题 {
public static void main(String[] args) {
Scanner sc = new Scan……
容易理解的C语言代码
摘要:解题思路:注意事项:参考代码:#include <stdio.h>
#include <string.h>
void fun(char a[])
{
for (int i = 0;……
python 超简单写法
摘要:解题思路:注意事项:参考代码:x = input()if len(x) < 100: print(x.lower())#数字太少不让发 这段别管 我随便加点sadadasddsadasdsada……
编写题解 1124: C语言训练-大、小写问题
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>int main(){ char a[100]; ……
1124:大小写转化问题(C语言,Java)@@
摘要:参考代码:解法一:C语言#include <stdio.h>
int main( )
{
int i;
char a[128] //ASCII码从0开始到127
……
题解 1124: C语言训练-大、小写问题(C语言)
摘要:解题思路:用if语句判断,如果是大写字母,根据ASCII码表得小写字母是大写字母加上32得,x=x+'a'-'A'也可以写成x=x+32参考代码:#includeint……