特牛网址导航

c++获取string的每个字符_c++取字符串的某一位字符-CSDN博客

网友收藏
文章浏览阅读2w次,点赞12次,收藏38次。1.类似于使用数组string a = “abcdef”;int num = a.length();for (int i = 0; i < num; ++i){cout << a[i];}2.使用for循环string a = “asdfa”;for (char ch : a)cout << ch;cout << a.length()..._c++取字符串的某一位字符