第1题: //C++ Primer Plus Edition 5 //Chapter 6 Homework 1 #include<iostream> #include<cctype> using namespace std; int main() { cout << "Enter text for analysis and type @" "to terminate input.\n"; char ch; cin.get(ch); while (ch != '@') { if (…
第1题: //C++ Primer Plus Edition 5 //Chapter 6 Homework 1 #include<iostream> #include<cctype> using namespace std; int main() { cout << "Enter text for analysis and type @" "to terminate input.\n"; char ch; cin.get(ch); while (ch != '@') { if (…