首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴GGXQ的代码贴全部
#include<iostream>
using namespace std;
class student{
private:string name;
  int numble;
  int score;
  static int total;
  static float ave;
  static float sum;
public:student(string n,int num,int s);
  void output();
};
......................
阅读全部 | 2021年12月16日 23:16
1
GGXQ