首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴zzw900901的代码贴全部
// 学生成绩排序类.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include<iostream>
#include<string>
using namespace std;

class S
{
public:
    S(int num,char *name,float score);
......................
阅读全部 | 2012年12月4日 21:57
1
zzw900901