提交时间:2024-01-23 16:57:03
运行 ID: 125437
#include<iostream> using namespace std; int main(){ double x; cin>>x; if(x>0){ cout<<"yes\n"<<x<<">0"; } else{ cout<<"no\n" <<x<<"<0"; } return 0; }