摘要: #include <stdio.h> void fx(int n); main() { int a=155; fx(a); getchar(); } void fx(int n) { while(n) { printf("%d",n%10); n=n/10; } } 阅读全文
posted @ 2022-03-09 09:25 myrj 阅读(583) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <math.h> void fc(float a,float b,float c); void fca(float a,float b,float c); main() { float a,b,c; scanf("%f%f%f",&a,&b,& 阅读全文
posted @ 2022-03-09 09:05 myrj 阅读(546) 评论(0) 推荐(0) 编辑