题解 2912: 最长平台

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int main(){    int n, * a,i,plateau_length=1,max_p……

编写题解 2912: 最长平台

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int findLongestPlateau(int arr[], int……

循环的范围要注意

摘要:解题思路:注意事项:参考代码:n=int(input())l=list(map(int,input().split()))mx=0cou=1##for i in range(max(l)+1):## ……

编写题解 2912: 最长平台

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n; scanf("%d",&n); int a[n]; for(int i=0;i<n;i++){ ……