c++ 6.0 2022-08-27 11:23 瀏覽數:390 來源:元素周期表 馬上練習 收藏 舉報 改錯字 #include<bits/stdc++.h>using namespace std;int main() { char a; cin>>a; if(a>='0' && a<='9') { cout <<"number"; } else if(a>='A' && a<='Z') { cout <<"capital"; } else if(a>='a' && a<='z') { cout <<"lowercase"; } else { cout <<"others"; } return 0; } 下壹篇:c++ 7.0 上壹篇:c++ 5.0