标题:c++结构体问题
只看楼主
dive137
Rank: 1
等 级:新手上路
帖 子:5
专家分:0
注 册:2006-7-23
 问题点数:0 回复次数:0 
c++结构体问题
#include <iostream>

using namespace std;
struct team
{
char name[20];
double money;
};
int main()
{
showMenu();
team *ps=new team[10];
char ch;
cin.get(ch);
while (ch!='e')
{

switch(ch)
{
case 'a':

cout<<"Please enter name: ";
cin.get(ps->name,20);
cout<<"Please enter money: ";
cin>>ps->money;

// initialTeam(ps);
break;
}

showMenu();
cin.get(ch);
}
delete ps;
cout<<"bye...!";
return 0;
}

为什么cin.get(ps->name,20); cin>>ps->money;不干活
还有程序有输入a的时候进入死循环。
搜索更多相关主题的帖子: money 结构体 include 
2007-10-17 10:47



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-178321-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.162900 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved