这个怎么不过呢?
#include<stdio.h> int main() { long i,fmax,smax,n,temp; scanf(\"%ld%ld\",&n,&temp); fmax=smax=temp; if (n>1) { scanf(\"%ld\",&temp); fmax<temp?(fmax=temp):(smax=temp); } for(i=3;i<=n;i++) { scanf(\"%ld\",&temp); if (temp>fmax) smax=fmax,fmax=temp; else if (temp>smax) smax=temp; } printf(\"%ld\",fmax+smax); return 0; }
这个题是这个意思吗?先把题目读懂吧!
这个题不是这个意思,题目是要求最大的上升系列和,知道吗?你再好好看看题目