// 121209 第七章例73.cpp : 定义控制台应用程序的入口点。
//
/*
* Copyright (c) 2012, 烟台大学计算机学院
* All rights reserved.
* 作 者: 刘同宾
* 完成日期:2012 年 12 月 09 日
* 版 本 号:v1.0
*
* 输入描述: 定义一个结构体变量stu,成员包括学号,姓名,性别,成绩。
* 定义一个指针变量p指向该结构体变量stu,通过该指针变量输出各成员的值。
* 问题描述:
* 程序输出:
* 问题分析:略
* 算法设计:略
*/
#include "stdafx.h"
#include<iostream>
#include<string>
using namespace std;
int main()
{
struct student
{
int num;
string name;
char sex;
float score;
};
student stu;
student *p=&stu;
stu.num=10301;
stu.name="wang feng";
stu.sex='f';
stu.score=89.5;
cout<<stu.num<<" "<<stu.name<<" "<<stu.sex<<" "<<stu.score<<" "<<endl;
cout<<(*p).num<<" "<<(*p).name<<" "<<(*p).sex<<" "<<(*p).score<<endl;
return 0;
}
定义一个结构体变量stu,成员包括学号,姓名,性别,成绩。
最新推荐文章于 2023-02-09 15:43:49 发布