摘要:
//求 任意正整数数字的各位数字 #include<stdio.h> int a[100];// 数字长度大于100位时,修改即可 void get(int n){ int i = 0; while(n != 0){ int x = n%10; a[i] = x; i++; n /= 10; } f 阅读全文
摘要:
//辗转相除法 最大公因数 + 最小公倍数 #include<stdio.h> void yinshu(int a,int b){ int temp; while(a % b != 0){ temp = a; a = b; b = temp % b; } printf("%d\n",b); } vo 阅读全文