码迷,mamicode.com
首页 > 编程语言 > 详细

c++ 初学遇到的代码问题集锦

时间:2017-05-24 11:11:06      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:输出   赋值   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 /

 

c++ 初学遇到的代码问题集锦

标签:输出   赋值   logs   out   nbsp   字符串   ace   集锦   using   

原文地址:http://www.cnblogs.com/Dbbf/p/6897729.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!