乐趣区

关于c++:dd

include<iostream>

include<cctype>

using namespace std;

int main()
{

char n;
while (cin >> n)
{if (isalpha(n))
        cout << "YES";
    else
        cout << "NO";
}

}

退出移动版