摘要: #include<stdio.h> #include<Windows.h> #include<time.h> struct clock { int hour; int minute; int second; }; typedef struct clock CLOCK; int main() { CL 阅读全文
posted @ 2021-07-28 11:17 kangobs 阅读(358) 评论(0) 推荐(0)
摘要: #include<stdio.h> int main() { int a[] = { 23,4,7,3,9,1,0 }; int n = 7,temp; for(int i =1;i<n;i++) for (int j = 0; j < n - i; j++) { if (a[j] > a[j + 阅读全文
posted @ 2021-07-28 10:28 kangobs 阅读(21) 评论(0) 推荐(0)