自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(21)
  • 收藏
  • 关注

原创 “21天养成好习惯”第一期-18

每日一练 兔子繁衍问题 #include<stdio.h> int main() { int N,n = 2,m=3,a1=2,a2=2; scanf("%d",&N); if(N>1){ while(n<N) { n = a1+a2; a2 = a1; a1 = n; m++; } printf(...

2021-11-12 22:28:14 121

原创 “21天“养成好习惯第一期-21

每日一练 猴子吃桃问题 #include<stdio.h> int main() { int N,n=1,i = 1; scanf("%d",&N); while(i<N) { n = 2*(n+1); i++; } printf("%d",n); return 0 ; }

2021-11-12 22:27:31 114

原创 “21天“养成好习惯第一期-20

每日一练 求交错序列前N项和 #include<stdio.h> #include<math.h> int main() { int N,i = 1; float sum = 0,a = 1,b = 1; scanf("%d",&N); while(i<=N) { sum = sum + a/b; a = pow(-1,i)*(fabs(a)+1); b += 2; ...

2021-11-12 22:26:43 271

原创 “21天“养成好习惯第一期-19

2021-11-09 每日一练 找出三位水仙花数 #include<stdio.h> #include<math.h> #include<stdlib.h> int main() { int M,N,x,a,b,c,f; scanf("%d %d",&M,&N); x = M; if(M>N||M<100||N>999) { printf("Invalid Value.\n");...

2021-11-12 22:25:51 735

原创 “21天养成好习惯”第一期-17

每日一练 求N分之一序列前N项和 #include<stdio.h> int main() { int N,i = 1; double sum = 0,n = 1; scanf("%d",&N); while(i<=N) { sum = sum + 1.0/n; n = n+1; i = i+1; } printf("sum = %.6lf",sum); return...

2021-11-12 22:24:53 58

原创 “21天养成好习惯”第一期-16

2021-11-07 每日一练 计算天数 #include<stdio.h> int main() { int y,m,d; scanf("%d/%d/%d",&y,&m,&d); if((y%4==0&&y%100!=0)||y%400==0) { switch(m) { case 1: printf("%d",d); br...

2021-11-12 22:23:56 258

原创 “21天养成好习惯”第一期-15

2021-11-06 每日一练 两个数的简单计算器 #include<stdio.h> int main() { int a,b; char c; scanf("%d %c %d",&a,&c,&b); switch(c) { case '+': printf("%d",a+b); break; case '-': printf("%d",a-b); ...

2021-11-12 22:22:45 588

原创 “21天养成好习惯”第一期-14

2021-11-05 每日一练 解一元二次方程 #include <stdio.h> #include <math.h> int main() { float a,b,c,p,q,d; float EPS=1.0e-6; scanf("%f %f %f",&a,&b,&c); d=b*b-4*a*c; if(fabs(a)<=EPS){ if(b!=0&&c!=0) ...

2021-11-12 22:21:12 425

原创 “21天养成好习惯”第一期-13

2021-11-04 每日一练 三天打鱼两天晒网 #include<stdio.h> int main() { int N,n; scanf("%d",&N); n = N%5; switch(n) { case 1: case 2: case 3:printf(“Fishing in day %d”,N); break; case 4: case 0: case 5:printf(“Drying in day %d”,N); break; default:printf(“wrong”)

2021-11-05 09:43:59 67

原创 “21天养成好习惯”第一期-12

2021-11-03 每日一练 纸牌魔术 #include<stdio.h> #include<math.h> int main() { int n,N; scanf("%d %d",&n,&N); n = n*pow(2,N/2); if(N%2==0) { printf(“0 %d”,n); } else { printf(“1 %d”,n); } return 0 ; }

2021-11-03 21:20:13 57

原创 “21天养成好习惯”第一期-11

2021-11-02 每日一练 f(x) #include<stdio.h> #include<math.h> int main() { float x,r; scanf("%f",&x); if(x>=0) { r = sqrt(x); } else { r = pow((x+1),2)+2.0*x+1.0/x; } printf(“f(%.2f) = %.2f”,x,r); return 0 ; }

2021-11-02 18:57:33 66

原创 “21天养成好习惯”第一期-10

2021-11-01 每日一练 出租车计价 #include<stdio.h> int main() { float s,p; int t,m; scanf("%f %d",&s,&t); m = 2*(t/5); if(s<=3.0) { p = 10 + m; } else if(s<=10.0) { p = 10+2*(s-3) + m; } else { p = 10+m+14+3*(s-10); } printf("%.0f",p); return 0 ;

2021-11-01 17:24:31 59

原创 “21天养成好习惯”第一期-8

2021.10.30 每日一练 花生换核桃 #include<stdio.h> int main() { int n1,n2; scanf("%d",&n1); n2 = (n1/9)*2; printf("%d\n",n2); return 0 ; }

2021-10-31 18:07:56 123

原创 “21天养成好习惯”第一期-7

2021.10.29 每日一练 等差数列 #include<stdio.h> int main() { int a1,a2,n,x,d; scanf("%d%d%d",&a1,&a2,&n); d = a2-a1; x = a1 + (n-1)*d; printf("%d",x); return 0 ; }

2021-10-31 18:05:37 61

原创 “21天养成好习惯”第一期-9

2021.10.31 每日一练 环形加密 #include<stdio.h> #include<math.h> int main() { char ch1; int n,ch2; scanf("%c%d",&ch1,&n); if(fabs(n)>26) { n = n%26; } else ch2 = ch1 + n; if (ch2>122) { printf("%c\n",ch2 - 26); } if (ch2<97) { printf("

2021-10-31 18:01:44 66

原创 “21天养成好习惯”第一期-6

2021.10.28 每日一练 后天 #include<stdio.h> int main() { int D; scanf("%d",&D); if(D > 5) { printf("%d",D-5); } else { printf("%d",D+2); } return 0 ; }

2021-10-28 20:55:26 65

原创 “21天养成好习惯”第一期-5

2021.10.27 每日一练 日期转换 #include<stdio.h> int main() { int m,d,y; scanf("%d-%d-%d",&m,&d,&y); printf("%d-%02d-%02d",y,m,d); return 0 ; }

2021-10-27 18:23:35 79

原创 “21天养成好习惯“第一期-1

2021.10.23 每日一练 自由落体 #include<stdio.h> #define g 10 int main() { float t,h; t = 3; h = 0.5gt*t; printf(“height = %.2f”,h); return 0 ; }

2021-10-26 20:53:10 76

原创 “21天养成好习惯”第一期-4

2021.10.26 每日一练 输入数学函数 #include<stdio.h> #include<math.h> int main() { double x,y; scanf("%lf\n",&x); y = log10(fabs(sin(x)-cos(x/2.0)+sqrt(x+168))); printf("%.4lf\n",y); return 0 ; }

2021-10-26 20:50:42 62

原创 “21天养成好习惯”第一期-3

2002.10.25 每日一练 鸡兔同笼 #include<stdio.h> int main() { int x,y,h,f; scanf("%d%d",&h,&f); y = 0.5f-h; x = 2h-0.5*f; printf("%d %d",x,y); return 0 ; }

2021-10-25 17:29:00 85

原创 “21天养成好习惯”第一期-2

2021.10.24 每日一练 #include<stdio.h> int main() { int a,b,c; float s; scanf("%*d %d %d %d %*d",&a,&b,&c); s = ((float)a+b+c)/3.0; printf("%.2f",s); return 0 ; }

2021-10-24 20:46:33 57

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除