Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
#include <iostream> using namespace std; int main() { char s[50]; int d = 0; cin >> s; while (s[d]) cout << s[d++] << endl; cout << "count: "<< d; }
#include <iostream> #include <string> using namespace std; int main() { string str; cin >> str; for (char& c : str) { cout << c << endl; } cout << "count: "<< str.length() << endl; }
#include <iostream> #include <string> using namespace std; int main() { string firstname, lastname; cin >> firstname >> lastname; for (char& c : firstname) { cout << c << endl; } cout << "count: "<< lastname.length() << endl; }