小学生趣味C++编程第12课 小写变大写

小学生c++编程资料

链接:https://pan.baidu.com/s/1FfOirxJ9rrY7rxtHUM4W_A 
提取码:uqm9 

#include<iostream>
using namespace std;
int main()
{
  char  n;
  cout<<"输入a~z:";
  cin>>n;
  n=n-32;
  cout<<n<<endl;
  return 0;
}

  

posted @ 2020-04-13 23:22  ki小园  阅读(243)  评论(0)    收藏  举报