#include <iostream.h>void main(){ int y; float x; cin>>x; if (x>0) { y=1;} if (x=0) { y=0;} if (x<0) { y=-1;} cout<<"y="<<y<<endl;}为什么不能运行 查看完整描述