摘要:
阅读全文
摘要:
#include<iostream> using namespace std; class clock{ public: clock(int hour=0,int minture=0,int second=0); void showtime() const; clock & operator++() 阅读全文
摘要:
#include<iostream> #include<string> using namespace std; class shape{ public: virtual void setvalues(float a,float b)=0; virtual float area()=0; }; cl 阅读全文
摘要:
阅读全文
摘要:
注意double类型相运算的也要是double类型 如上例若把a变量更改为int类型则会导致结果出错 #include<iostream> #include<string> using namespace std; class people{ protected: int age; string n 阅读全文
摘要:
思路很重要 阅读全文
摘要:
#include<iostream> using namespace std; void speed(double a){ double v; v=(a-95859)/2; cout<<"汽车的车速为"<<v<<endl; } int main(){ int i,j; double s; int A 阅读全文
摘要:
1 #include<iostream> 2 using namespace std; 3 int main(){ 4 int num=0; 5 int i,j,k; 6 for(i=0;i<4;i++){ 7 for(j=0;j<4;j++){ 8 k=8-i-j; 9 if(k<=6){ 10 阅读全文
摘要:
1 #include<iostream> 2 #include<math.h> 3 using namespace std; 4 void print(int s[]); 5 int judge(int c[]); 6 int j=0; 7 int main(){ 8 int sweet[10]={ 阅读全文
摘要:
阅读全文