2146: 信息学奥赛一本通T1317-组合的输出 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <stdio.h> #include <stdlib.h> using namespace std; …… 题解列表 2024年12月01日 0 点赞 0 评论 155 浏览 评分:9.9
信息学奥赛一本通T1317-组合的输出 摘要:解题思路:- combination 函数是一个递归函数,用于生成组合。- 当 index 等于 r 时,说明已经生成了一个组合,输出该组合。- 在循环中,从 start 到 n 遍历,将当前数字加…… 题解列表 2024年10月09日 0 点赞 0 评论 186 浏览 评分:7.3
模拟数的进位运算 摘要:解题思路:如下注意事项:参考代码:#include<stdio.h>int main(){ int n,r; scanf("%d%d",&n,&r); …… 题解列表 2024年07月24日 0 点赞 0 评论 214 浏览 评分:7.3
C语言解组合的输出 摘要:解题思路:注意事项:注意输出格式参考代码:#include <stdio.h>#include <stdbool.h>int n,r;bool judge[25];int b[25];void arr…… 题解列表 2023年07月20日 0 点赞 0 评论 324 浏览 评分:2.0