Run ID:133814
提交时间:2025-10-22 17:38:33
#include <iostream> //designed by hu 2025-10 using namespace std; int main(){ int a; //定义语句 error: 'a' was not declared in this scope. //让a先出生 cin >> a; //输入语句 必须先定义,再使用 if( a>0 ) { cout<<"YES"; } else { cout<<"NO"; } return 0; }