摘要: #include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> void decline(int a[]) { int temp = 0; for (int i = 0; i < 3; i++) { for ( 阅读全文
posted @ 2023-03-02 20:43 雨中白发人 阅读(21) 评论(0) 推荐(0)
摘要: #include<stdio.h> #include<stdlib.h> #include<string.h> #include<math.h> int max(int a,int b){ return a>b?a:b; } int main() { int n; scanf("%d",&n); g 阅读全文
posted @ 2023-03-02 17:39 雨中白发人 阅读(35) 评论(0) 推荐(0)
摘要: #include <stdio.h> #define MAX_A 1000 int A[MAX_A]; int B; /* 除数 */ int num; /* A 被除数有多少位 */ void read_AB(); void division_print(); /***************** 阅读全文
posted @ 2023-03-02 16:27 雨中白发人 阅读(22) 评论(0) 推荐(0)