新微赢技术网
标题:
[求助]一个小问题
[打印本页]
作者:
lala
时间:
2009-11-3 03:07
标题:
[求助]一个小问题
#include "stdafx.h"
#include <iostream.h>
main()
{
struct employee
{
char employee_num;
double salary;
};
struct employee a[3];
a[0].employee_num=9091;
a[0].salary=85000;
a[1].employee_num=1026;
a[1].salary=66000;
a[2].employee_num=3908;
a[2].salary=55000;
cout<<"Employee Number Salary"<<"\n";
for (int i;i=0;i<=3,i++)
{
cout<<a[i].employee_num<<" "<<a[i].salary<<"\n";
}
}
为什么程序执行到cout<<"Employee Number Salary"<<"\n";
就停止了呢?
作者:
天山花芯
时间:
2009-11-3 03:07
int i;i=0;i<=3,i++
你这里循环的条件是i=0,也就是0,也就是false;所以永远也不循环。
作者:
梦的放肆
时间:
2009-11-3 03:07
谢谢~~
作者:
女人请自重
时间:
2009-11-3 03:07
谢谢~~
欢迎光临 新微赢技术网 (http://bbs.weiying.cn/)
Powered by Discuz! X3.2