- 博客(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关注的人