摘要:
#include<stdio.h> int gcd (int a,int b) { int num=0; int c=0; int temp; //两个数一样的情况下,最大公约数是他本身 if (a == b) { printf("%d", a); } else { //保证a是比b大的数 if ( 阅读全文
摘要:
![](https://img2023.cnblogs.com/blog/2166437/202212/2166437-20221222101811796-1273755828.jpg) 阅读全文
摘要:
#include<stdio.h> #include<string.h> #define INT_MAX 2147483647 #define INT_MIN (-INT_MAX - 1) int checktruefalse(int a); int main() { printf("-214748 阅读全文