摘要: #代码 #include <stdio.h> int main() { int a,b,r,temp; printf("Please enter a ,b:"); scanf("%d,%d",&a,&b); if(a<b) { temp=a; a=b; b=temp; } r=a%b; while( 阅读全文
posted @ 2022-12-22 09:12 戴骏 阅读(31) 评论(0) 推荐(0) 编辑
摘要: #代码 #define INT_MAX 2147483647 #define INT_MIN (-INT_MAX - 1) #include<stdio.h> #include<string.h> int checktruefalse(int a) { if(a) { printf(" true\n 阅读全文
posted @ 2022-12-22 08:51 戴骏 阅读(10) 评论(0) 推荐(0) 编辑