for循环变量作用域的范围

#include <iostream>
using namespace std;
int main(){
int a,b,min;
cout<<"Enter two numbers:"<<endl;
cin>>a>>b;
min=a>b?b:a;
for (int d=2; d<min; d++)
if (((a%d)==0)&&((b%d)==0)) break;
if(d==min)
{cout<<"No common denominators\n";return 0;}
cout<<"The lowest common denominator is %d"<<endl<<d;
return 0;

}

在windows下,用g++编译这段代码会报错。

 error: name lookup of `d' changed for new ISO `for' scoping
 error:   using obsolete binding at `d'

------------------------------------------------------------

橙色字体的意思是for循环在“初始化”定义的部分变量作用域的一个问题。g++在此把此变量作用域限定在了for循环中,或者说出了for循环定义的变量就无效了。

应该把红色字体改成:

int d;
for (d=2; d<min; d++)



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值