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;         }   
相關文章
相關標籤/搜索