C++で文字列の各文字を出力する方法
forループを使用する方法:#include <iostream> #include <string> int main() { std::string str = "Hello, World!"; for (int i = 0; i < str.length(); i++) { std::cout << str[i] << std::endl; } return 0; }>>More
forループを使用する方法:#include <iostream> #include <string> int main() { std::string str = "Hello, World!"; for (int i = 0; i < str.length(); i++) { std::cout << str[i] << std::endl; } return 0; }>>More