鱼C论坛

 找回密码
 立即注册
查看: 2408|回复: 2

c语言请教

[复制链接]
发表于 2013-12-12 23:19:18 | 显示全部楼层 |阅读模式
1鱼币
#include "stdafx.h"
#include "iostream"
#include "string"
#include "stdio.h"
using namespace std;
using std::string;
struct score
{
    string No;
    string Name;
    bool is_score;
    union achieve   
    {
        char grade;
        int mark;
    }outcome;
};
score * input(int);
void output(score *, int);
int _tmain(int argc, _TCHAR* argv[])
{
    int i, count;
    score * p;
    cout<<"Howmany students? ";
    cin>>count;
    output(input(count),count);
    return 0;
}
score * input(int n)
{
    int i = 0;
    char c;
    score * h, * p = newscore[n];
    h = p;
    while (i++ < n)
    {
        cout<<"No:\t";
        cin>>p->No;
        cout<<"Name:\t";
        cin>>p->Name;
        cout<<"Isachievement a score? (Y/N): ";
        cin>>c;
        c = c & 223;
        if (c == 'Y')
        {
            p->is_score= 1;
            cout<<"Score:\t";
            cin>>p->outcome.mark;
        }
        else
        {
            p->is_score= 0;
            cout<<"Grade(A,B, C, D, E): ";
            cin>>p->outcome.grade;
        }
        p++;
        cout<<"--------------"<<endl;
    }
    return h;
}
void output(score * p, int count)
{
    cout<<"No\tName\tAchieve"<<endl;
    for (int i=0;i<count; i++)
    {
        cout<<p->No<<"\t"<<p->Name<<"\t";
        if(p->is_score)
            cout<<p->outcome.mark<<endl;
        else
            cout<<p->outcome.grade<<endl;
        p++;
    }
}
为什么这个程序中使用联合体的类型?使用联合体的主要目的是什么?
使用#include“iostream",namespace std这两个语句的作用是什么?没有两个语句会发生什么情况?
“->” 和 “.”这两个操作符之间有什么不同?

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2013-12-12 23:41:25 | 显示全部楼层
iostream是输入输出函数的头文件,就是cout和cin这两个.
namespace是命名空间,定义函数的范围,这是为了防止重名。比如你们村有个两叫张三的,你只喊张三不能确定是喊哪个,你要是喊谁谁家的张三就知道你在叫哪个张三了,这个std就相当于谁谁家的.
兄弟,建议你多看看教程啊,这些可都是基本知识啊!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2013-12-13 12:09:54 | 显示全部楼层
哥们能多看点书吗?这样的问题还是不要拿出来问了好吧。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-23 02:51

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表