上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 53 下一页
摘要: #include<iostream>#include<cmath>using namespace std;class Point{ private: double x; double y; double z; public: Point(double a,double b,double c):x(a 阅读全文
posted @ 2023-05-23 09:26 不会JAVA的小袁 阅读(10) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>using namespace std;class Horse{ public: Horse(){ cout<<"Horse 申请了空间..."<<endl; } virtual void Fly(){ cout<<"Just a horse."<<endl; } 阅读全文
posted @ 2023-05-23 09:08 不会JAVA的小袁 阅读(14) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <iomanip>using namespace std;class Shape{ public: const double PI; Shape():PI(3.1415926){ } virtual double Area()=0;};clas 阅读全文
posted @ 2023-05-23 08:51 不会JAVA的小袁 阅读(15) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>int main(){ int i; int low=0; int high=N-1; int mid; int k=-1; int m; int a[N]={-3,4,7,13,45,67,89,100,180}; printf("数组中的数据如下: \n"); 阅读全文
posted @ 2023-05-22 12:03 不会JAVA的小袁 阅读(10) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>int main(){ int a[1000]; int i,j,n,t,k=0; scanf("%d",&n); for(i=0;i<n;i++) scanf("%d",&a[i]); for(j=n-1;j>0;j--) for(i=0;i<j;i++) if( 阅读全文
posted @ 2023-05-22 11:51 不会JAVA的小袁 阅读(8) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>int main(){ float money=0.0; int i; for(i=1;i<=5;i++) { money=(1000+money)/(1+0.0063*12); } printf("存钱时应存入:%f\n",money); return 0;} 阅读全文
posted @ 2023-05-22 11:31 不会JAVA的小袁 阅读(18) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>#include<math.h>float fun(double a,double b,double c,double d){ float x0=2.0; float x; x=x0-((a*pow(x0,3)+b*pow(x0,2)+c*x+d)/(a*pow(x 阅读全文
posted @ 2023-05-22 11:27 不会JAVA的小袁 阅读(35) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>void main(){ long fib1=1,fib2=1; int i; for(i=1;i<=15;i++) { printf("%12d%12d",fib1,fib2); if(i%2==0) printf("\n"); fib1=fib1+fib2; f 阅读全文
posted @ 2023-05-22 11:15 不会JAVA的小袁 阅读(8) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>int main(){ int i,j,m,k; for(i=0;i<=9;i++) { for(j=0;j<=9;j++) { if(j!=i) { k=1000*i+100*i+10*j; for(m=3;m*m<=k;m++) { if(m*m==k) { p 阅读全文
posted @ 2023-05-22 11:07 不会JAVA的小袁 阅读(8) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>typedef struct date{ int year; int month; int day;}DATE;int countDay(DATE);int runYear(int);int main(){ DATE today; int totalday; int 阅读全文
posted @ 2023-05-20 20:44 不会JAVA的小袁 阅读(8) 评论(0) 推荐(0) 编辑
上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 53 下一页