#include <stdio.h>
#include<string.h>//编译预处理命令,用于下面求字符串长度
int main()
{
char str[100];//字符串长度为100
int i,n=0;
gets(str);//输入字符串,按回车结束输入
n=strlen(str);
for(i=0;i<=n;i++)
{
if(str[i]<=91 && str[i]>=65)//A的ascll码65 Z的为91 a为32
str[i]=str[i]+32;
}
printf("%s",str);//输出字符串
return 0;
}
0.0分
1 人评分
C语言训练-角谷猜想 (C语言代码)浏览:1758 |
C语言训练-计算:t=1-1/(2*2)-1/(3*3)-...-1/(m*m) (C语言代码)浏览:794 |
数组输出 (C语言代码)--此题的题目描述有问题浏览:1830 |
淘淘的名单 (C语言代码)浏览:1162 |
校门外的树 (C语言代码)浏览:727 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:638 |
1025题解浏览:785 |
矩形面积交 (C语言代码)浏览:1419 |
勾股数 (C语言代码)浏览:820 |
马拦过河卒 (C语言代码)浏览:1196 |