码迷,mamicode.com
首页 > 编程语言 > 详细

c语言代码编程题汇总:将字符串中的大写字母转换成小写字母

时间:2017-03-09 00:45:19      阅读:363      评论:0      收藏:0      [点我收藏+]

标签:ring   while   stdio.h   res   c语言   int   字母   inpu   dsd   

将字符串中的大写字母转换成小写字母

  程序代码如下:

 1 /*
 2     2017年3月8日21:21:46
 3     功能:将字符串中的大写字母转换成小写字母
 4 */
 5 /*
 6 #include"stdio.h"
 7 
 8 int main()
 9 {
10     int n = 0;
11 
12     char a[100];
13 
14     printf("please input a string:");
15 
16     gets(a);
17 
18     for(int i = 0 ;a[i] != ‘\0‘;i++)
19     {
20 
21         n++;
22 
23     }
24 
25     for(int j = 0;j < n ; j++)
26     {
27 
28         if (a[j] >= ‘A‘&& a[j] <= ‘Z‘)
29         {
30 
31             a[j] = a[j] + 32;
32 
33         }
34     
35     }
36 
37     puts(a);
38 
39 }*/
40 
41 #include"stdio.h"
42 
43 int main()
44 {
45     char a[100];
46 
47     char *p = a;
48 
49     printf("please input a string: \n");
50 
51     gets(a);
52 
53     while(*p)
54     {
55 
56         if(*p >= A&& *p <= Z)
57         {
58 
59             *p = *p + 32;
60 
61         }
62 
63         p++;
64     
65     }
66     printf("the result is: \n");
67     puts(a);
68 }
69 /*
70     总结:
71     在VC++6.0中显示的结果:
72     ——————————————————————————————
73     please input a string:
74     ASDsdffgj
75     the result is:
76     asdsdffgj
77     ——————————————————————————————
78 */

 

c语言代码编程题汇总:将字符串中的大写字母转换成小写字母

标签:ring   while   stdio.h   res   c语言   int   字母   inpu   dsd   

原文地址:http://www.cnblogs.com/wxt19941024/p/6523603.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!