摘要:
#include<iostream> #include<iomanip> using namespace std; int main() { int N,i,sex,b=0,g=0;float score,aver1,aver2,aver3,b1=0.0,g1=0.0; cin>>N; for(i= 阅读全文
摘要:
#include<iostream> using namespace std; class CPolygon{ protected: int width,height; public: void set_values(int a,int b) {width=a;height=b;} }; class 阅读全文