C++ 算法提高 字母大小写转换

#include<bits/stdc++.h> #include<iostream> using namespace std; int main() {     char s,t;     cin>>s;     if(s-'A'>=0&&s-'Z'<=0)     {         t=s+32;         cout<<t;         return 0;         }   
相关文章
相关标签/搜索