for里面的for循环不被执行
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了for里面的for循环不被执行相关的知识,希望对你有一定的参考价值。
#include<iostream>
using namespace std;
int a[100100]=0;
int main()
int n,m;
cin >> n >> m;
for(int i=1;i<=n;i++)
cin >> a[i];
for(int i=1;i<=m;i++)
int x;
cin >> x;
int max=0;
for(int i=x;i<=m;i++) //这一个for循环不被执行
if(a[i]>=max)
max=a[i];
cout << max << endl;
return 0;
第二个for循环中i应该小于n
嗯嗯 O(∩_∩)O谢谢啊 你能不能再帮我解决一下超时的问题呢~
追答你把题目要说清楚,怎么个输入,要什么范围内求最大?要求几个答案?
以上是关于for里面的for循环不被执行的主要内容,如果未能解决你的问题,请参考以下文章