标签:输出 赋值 logs out nbsp 字符串 ace 集锦 using
1 #include <iostream> 2 using namespace std; 3 4 int main() 5 { 6 string s = "qwe"; 7 string cun = "v"; 8 cun [0] = s[0]; 9 cun [1] = s[1]; 10 for (auto w : cun) 11 cout << w; 12 cout << endl; 13 cout << "循环结束1" << endl; 14 cout << "循环结束2" << endl; 15 cout << cun[1]; 16 } 17 18 / 19 * 为什么不可以这样赋值给变量cun 20 * 为什么输出会有乱码,不是都end把所有cout都清空了吗 21 * 为什么最后cun[1], 又可以输出正确, for循环在这里是怎么进行循环的 22 /
标签:输出 赋值 logs out nbsp 字符串 ace 集锦 using
原文地址:http://www.cnblogs.com/Dbbf/p/6897729.html