给定一个大写字母,要求用小写字母输出。

#include<stdio.h>
int main()
    {
        char c1,c2;
        c1='A';
        c2=c1+32;
        printf("%c\n",c2);
        printf("%d\n",c2);
        return 0;
     }

猜你喜欢

转载自blog.csdn.net/weixin_44668386/article/details/88089334
今日推荐