自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 学习记录 PTA7-22 龟兔赛跑(勉强能过)

#include <stdio.h>int main(){ int time,t=0,sgui=0,stu=0; int tt[10000]; int sg[10000]; int st[10000]; int i; int count=0; scanf("%d",&time); if(time<=10){ if(time==0){ printf("-_- 0"); }else printf("^_^ %d",9*time); }else{.

2022-04-05 23:09:03 293

原创 学习(PTA)7-21 求特殊方程的正整数解

#include <stdio.h>#include <math.h>int main(){ int n; int x,y; int a=1; scanf("%d",&n); for(x=1;x<sqrt(1.0*n);x++){ for(y=1;y<n;y++){ if(x*x+y*y==n&&x<=y){ printf("%d %d",x,y); printf("\n"); a=0; .

2022-04-04 11:32:56 1403 1

原创 (PTA)7-19 支票面额

#include <stdio.h>int main(){ int f,n; scanf("%d",&n); for(f=0;(98*f-n)%199!=0;f++); if(f<100) printf("%d.%d",(98*f-n)/199,f); else printf("No Solution"); return 0;}这个也能过,主要就是判断结果是否为整数,然后注意1元等于100分...

2022-04-02 12:28:09 159 1

原创 学习 辗转相除法

#include <stdio.h>int main(){ int a,b; scanf("%d/%d",&a,&b); int c=a,d=b,t; while(d>0){ t=c%d; c=d; d=t; } printf("%d/%d",a/c,b/c); return 0;}

2022-03-24 11:55:09 90

空空如也

空空如也

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

TA关注的人

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