帮我看看这个C++代码为什么会一直循环.我明明写入了"while(z!=3)才循环也就是说等于3就中止循环"..

//filename:d.cpp#include<iostream>usingnamespacestd;voidx();inty();intmain()//声明函数.{i... //file name:d.cpp
#include <iostream>
using namespace std;
void x();
int y();
int main()//声明函数.
{
int z=0;
while(z!=3)
{
x();
int z;//定义变量.
z=y();
switch(z)
{
case 1:
cout<<"processing receivable"<<endl;
break;
case 2:
cout<<"processing payables"<<endl;
break;
case 3:
cout<<"quitting"<<endl;
break;
default:
cout<<"\alnvalid selection"<<endl;
}
}
return 0;
}
void x()
{
cout<<"---menu---"<<endl;
cout<<"1=receivables"<<endl;
cout<<"2=payables"<<endl;
cout<<"3=ouit"<<endl;
}
int y()
{
int a;
cout<<"enter selection:";
cin>>a;
return a;
}
展开
 我来答
donaroo
2006-04-27 · TA获得超过1365个赞
知道小有建树答主
回答量:934
采纳率:0%
帮助的人:641万
展开全部
int z=0;
while(z!=3)
{
x();
int z;//定义变量.

在循环体内外多定义了一个z变量
导致循环体内部的z成了局部变量
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式