java 编写题解 2912: 最长平台 递归 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2024年01月10日 0 点赞 0 评论 190 浏览 评分:0.0
另外一道相同原理https://www.dotcpp.com/oj/problem2814.html 摘要:解题思路:开辟一个动态变量注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d", &n); int arr[n]; …… 题解列表 2024年12月19日 0 点赞 0 评论 87 浏览 评分:0.0
C++:两种方法:递归函数 && 简单for循环 摘要:解题思路:注意事项:参考代码://递归函数#include<iostream>#include<vector>using namespace std ;void ko ( ve…… 题解列表 2025年04月17日 0 点赞 0 评论 25 浏览 评分:0.0