摘要: 排序算法 选择排序 #include <iostream> #include <cmath> using namespace std; int main() { int n,i,j,a[2000]; bool t; cin >>n; for (i=1;i<=n;i++) cin >>a[i]; fo 阅读全文
posted @ 2023-11-04 23:00 Raymongillichmks 阅读(14) 评论(0) 推荐(0) 编辑
摘要: (EX)GCD 1、给定两正整数m,n 2、选取其中较小的数,假定为m 3、若n%m非0,即存在余数,将n和m中较大的数n替换为余数,返回步骤2 4、若n%m为0,则最大公约数为m #include <stdio.h> int main() { int data1, data2; int data; 阅读全文
posted @ 2023-11-04 00:27 Raymongillichmks 阅读(11) 评论(0) 推荐(0) 编辑