萌新C语言:for循环 摘要:解题思路:在可能区间内递增/递减,直到出现第一个符合要求的数。注意事项:参考代码:#include<stdio.h>int main(){ int m,n,min,max,a,b;//m,n为输入值,…… 题解列表 2024年11月27日 3 点赞 0 评论 829 浏览 评分:0.0
利用vector定义数组大小,static_cast显式转换 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;#include <vector>int main(){ int n…… 题解列表 2025年09月10日 0 点赞 0 评论 179 浏览 评分:0.0
1011:求最大公因数和最小公倍数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int gcd(int a,int b){ int temp; whil…… 题解列表 2025年10月21日 3 点赞 0 评论 532 浏览 评分:0.0
编写题解 1011: [编程入门]最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int GongYueShu(int a,int b){ int temp; while(b!=0){ temp=a%b;…… 题解列表 2025年11月22日 1 点赞 0 评论 34 浏览 评分:0.0