山峰数(hill)-输出数据

no

Copy

样例解释
样例1:
1 < 5 < 7 且 7 > 6 > 4

#include<bits/stdc++.h>
using namespace std;
string a;
bool k=true;
int main(){
	cin>>a;
    for(int i=1;i<=2;i++)
        if(a[i]<=a[i-1])k=false;
    for(int i=3;i<=4;i++)
        if(a[i]>=a[i-1])k=false;
    if(k)cout<<"yes";
    else cout<<"no";

    return 0;
}

上一篇:从零打造基础HTTP服务器:揭秘背后的技术魔法-MiniTomcat