首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴POWERASPnet的代码贴C语言
#include <iostream>
#include <cstring>
using namespace std;

class Employee
{
public:
    virtual void pay(){ }
    string name;
    float  salary;
};
阅读全部 | 2020年6月13日 15:56
1
POWERASPnet