码迷,mamicode.com
首页 > 其他好文 > 详细

for语句运用。

时间:2016-10-17 14:32:30      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:

/* Note:Your choice is C IDE */
#include<stdio.h>
void main()
{
    char x=a;
    printf("please input ABC:");
    scanf("%c",&x);
    if( x>=A && x<=Z)
    {
        x=x+32; printf("%c\n",x);
    }
    else if( x>=a && x<=z)
    {
        x=x-32; printf("%c\n",x);
    }          
    else
    {    
        printf("input mistake");
    }
}
    getch();

 

for语句运用。

标签:

原文地址:http://www.cnblogs.com/lingzhipeng123/p/5969350.html

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