Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
100660 周宸宇 如何得到"hello" C++ Accepted 1 MS 276 KB 350 2024-12-09 20:22:17

Tests(20/20):


Code:

#include<iostream> #include<cstring> using namespace std; int main(){ char a[1501],b[6]={'h','e','l','l','o'}; int d=0; cin>>a; for(int j=0;a[j]!='\0';j++){ if(a[j]==b[d]){ d++; } } if(d==5){ cout<<"YES"; }else{ cout<<"NO"; } return 0; }