C++ Primer Plus 課後編程練習——第六章 分支語句和邏輯運算符

一、編寫一個程序,讀取鍵盤輸入,直到遇到@符號爲止,並回顯輸入(數字除外),同時將大寫字符轉換成小寫,將小寫字符轉換成大寫。ios #include<iostream> #include<cctype> using namespace std; int main(){ char c; cin >> c; while (c != '@'){ if (islower(c)){ c =
相關文章
相關標籤/搜索