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

C++:[Error] name lookup of 'i' changed for ISO '

时间:2020-01-25 23:27:52      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:需要   logs   cout   std   col   main   htm   html   tps   

错误原因:变量i只在for循环中可见,若在循环外使用需要单独定义

 1 #include <iostream>
 2 using namespace std;
 3 
 4 int main(){
 5     int sum = 0;
 6     int n = 5;
 7     for(int i = 0 ; i < n ; i++){
 8         sum += i;
 9     }
10     cout << i << endl;
11 }

报错

 1 #include <iostream>
 2 using namespace std;
 3 
 4 int main(){
 5     int sum = 0;
 6     int n = 5;
 7     int i;
 8     for(i = 0 ; i < n ; i++){
 9         sum += i;
10     }
11     cout << i << endl;
12 }

正常运行

 

参考:

https://www.cnblogs.com/expedition/p/11441388.html

https://wenda.so.com/q/1449244894722638?src=9999&cid-pre=1000204

C++:[Error] name lookup of 'i' changed for ISO '

标签:需要   logs   cout   std   col   main   htm   html   tps   

原文地址:https://www.cnblogs.com/cxc1357/p/12233572.html

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