| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 541 人关注过本帖
标题:编译问题,求救!
只看楼主 加入收藏
niitp
Rank: 1
等 级:新手上路
帖 子:53
专家分:0
注 册:2007-4-15
收藏
 问题点数:0 回复次数:4 
编译问题,求救!
#include <iostream>
class Customer
{
      private:
      char mobileNo[12];
      char name[25];
      char dateOfBirth[10];
      char billingAdd[50];
      char city[25];
      char phoneNo[13];
      float amountOutstanding;
      public:
      void print()
      {
           cout<<endl<<"Mobile phone number:";
           cout<<mobileNo<<endl;
           cout<<"Name:";
           cout<<name<<endl;
           cout<<"date of birth:";
           cout<<dateOfBirth<<endl;
           cout<<"Billing address:";
           cout<<billingAdd<<endl;
           cout<<"City:";
           cout<<city<<endl;
           cout<<"residence phone number:";
           cout<<phoenNo<<endl;
           cout<<"amount due:";
           cout<<amountOutstanding<<endl;
      }   
       void get()
       {
          cout<<"Mobile phone number:";
          cin>>mobileNO;
          cout<<endl<<"Name:";
          cin>>name;
          cout<<endl<<"Date of Birth:";
          cin>>dateOfbirth;
          cout<<endl<<"Billing Address:";
          cin>>billingAdd;
          cout<<endl<<"city";
          cin>>city;
          cout<<endl<<"Residence phone number:";
          cin>>phoneNO;
          cout<<endl<<"Amount due:";
          cin>>amountOutstanding;
         
                  
            }
      
};   
 int main()
 {
     Customer object;
     object.get()
     object.print()
     return 0;
}         



15 C:\Documents and Settings\ping\桌面\2ke.cpp `cout' undeclared (first use this function)
  (Each undeclared identifier is reported only once for each function it appears in.)



请问是什么问题!
搜索更多相关主题的帖子: 编译 
2007-11-29 16:16
无缘今生
Rank: 2
等 级:新手上路
威 望:3
帖 子:523
专家分:7
注 册:2007-6-25
收藏
得分:0 
如果你要用这个的话:
#include <iostream>
还要加上:using namespace std;

还有一种就是直接写成#include <iostream.h>

时不再来!!!
2007-11-29 16:47
csmenglei951
Rank: 1
等 级:新手上路
威 望:1
帖 子:77
专家分:0
注 册:2007-9-30
收藏
得分:0 
很多拼写错误,自己得仔细
2007-11-29 16:48
niitp
Rank: 1
等 级:新手上路
帖 子:53
专家分:0
注 册:2007-4-15
收藏
得分:0 
谢谢楼上两位~~问题解决了...

为什么我输入数据后还没显示就闪没了....
2007-11-29 17:03
beyond0702
Rank: 1
来 自: 桂 林
等 级:新手上路
帖 子:219
专家分:0
注 册:2007-11-17
收藏
得分:0 
N 多错误
2007-11-29 17:54
快速回复:编译问题,求救!
数据加载中...
 
   



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

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