WEB开发网
开发学院软件开发VC Visual C++程序的建立~~1 阅读

Visual C++程序的建立~~1

 2009-06-03 20:05:22 来源:WEB开发网   
核心提示: 例2 用C++编写显示学生信息程序 (1)双击VC系统FileNewprojectsWin32 Console ApplicatorProject name处写文件名:学生信息2,下面Location(路径名)处写e:vcppokfinishok (2)再在主菜单处点File NewFi

Visual C++程序的建立~~1

例2  用C++编写显示学生信息程序

(1)双击VC系统FileNewprojectsWin32 Console ApplicatorProject name处写文件名:学生信息2,下面Location(路径名)处写e:vcppokfinishok

(2)再在主菜单处点File NewFile选中C++ Source,右边Add to Project处显示出你刚才敲的文件名File处写:学生信息2.cppok,如图1.1.3所示。

Visual C++程序的建立~~1

在出现的窗口界面(文档窗口)上,你可敲入C++程序。再单击BuildBuild(编译运行), 结果如图1.1.4所示。敲入的C++程序如下:

 #include <string.h>
#include <iostream.h>
class student   //定义类(class)  student
{   private:  //私有模式
 public:   //公共模式
      long num;           //学号
      char name[20];      //年龄
      char sex[10];       //性别
      float score;        //成绩
      void sc();          //输出函数
 protected: //保护模式
};
void student::sc()
{  student stu;
 student *p=&stu;
 stu.num=89101;
 strcpy(stu.name,”李明”);
 strcpy(stu.sex,”男”);
 stu.score=89.5;
   //以下2种输出结果都是相同的
 cout<<”学号    No:  “<<stu.num<<”n”;
 cout<<”姓名  name:  “<<stu.name<<”n”;
    cout<<”性别   sex:  “<<stu.sex<<”n”;
 cout<<”成绩 score: “<<stu.score<<”nn”;
 cout<<”学号    No:  “<<p->num<<”n”;
    cout<<”姓名  name:  “<<p->name<<”n”;
 cout<<”性别   sex:  “<<p->sex<<”n”;
 cout<<”成绩 score:  “<<p->score<<”nn”;
}
void main()      //主函数
{  student xx;  //定义student类的对象xx
 xx.sc();     //sc()是xx的成员函数,xx.sc()是表示执行xx的成员函数sc()
}
 

上一页  1 2 3 4 5 6  下一页

Tags:Visual 程序 建立

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接