04 2023 档案
摘要:2 #include <iostream> 3 #include <string> 4 using namespace std; 5 class Shape 6 { 7 virtual void setvalues() = 0; 8 virtual void floatarea() = 0; 9 }
阅读全文
摘要:#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]={
阅读全文
摘要:1 #include<iostream> 2 #include <math.h> 3 #define taxbase 3500 4 using namespace std; 5 /*typedef struct{ 6 int id; 7 char name[20]; 8 int age; 9 cha
阅读全文
摘要:将变量进行循环利用使得程序更加简单有序,运行报错时也更方便查找错误
阅读全文
摘要:问题 三天打鱼两天晒网,输入一个日期,判断该人是在打鱼还是晒网。 步骤 首先确定输入的日期到开始的日期有多少天 三天打鱼两天晒网所以可以判断他的行为是以五天为一周期 将计算出的日期对五进行取余,余数为1,2,3时在打鱼其余是在晒网 进行输出 流程图他这个图片传出问题了 余数为4,0 余数为1,2,3
阅读全文
摘要:考虑全面,int类型会导致小鸡除以3后抹去后面的小数部分,导致情况多出。
阅读全文