摘要: #include <stdio.h> int gys(int ys,int b) { ys=ys%b; if(!ys) return b; return (gys(b,ys)); } main() { printf("%d\n",gys(110,24)); int n='e'; switch(n-- 阅读全文
posted @ 2022-04-23 15:45 myrj 阅读(136) 评论(0) 推荐(0) 编辑