07 2021 档案

摘要:1 // C program to demonstrate Basic Euclidean Algorithm 2 #include <stdio.h> 3 4 // Function to return gcd of a and b 5 int gcd(int a, int b) 6 { 7 if 阅读全文
posted @ 2021-07-30 17:08 互联星空 阅读(55) 评论(0) 推荐(0)