C语言实验——转换字母(顺序结构)

#include <stdio.h>
#include <stdlib.h>


int main()
{
    char a, b;
    scanf("%c",&a);
    b = a - 32;
    printf("%c",b);
    return 0;
}

相关文章:

  • 2021-09-12
  • 2022-12-23
  • 2021-10-15
  • 2022-01-04
  • 2022-12-23
  • 2022-12-23
  • 2021-09-12
  • 2022-12-23
猜你喜欢
  • 2021-12-11
  • 2021-04-19
  • 2021-10-03
  • 2021-05-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-13
相关资源
相似解决方案