问题标题: 酷町堂:1229 判断坐标

0
0
已解决
宋梓涵
宋梓涵
新手光能
新手光能
#include<cmath>
#include<cstdio>
#include<iostream>
using namespace std;
int main()
{
    int x,y;
    cin x,y;
    if(x>0&&y>0) cout<<1;
    if(x<0&&y>0) cout<<2;
    if(x<0&&y<0) cout<<3;
    if(x>0&&y<0) cout<<4;
}

我为神马错了!!!大佬们,HELP ME!!!


0
已采纳
陈汇鑫
陈汇鑫
修练者
修练者

你的输入(第八行)错了:

cin>>x>>y;

0
0
鲍欣妍
鲍欣妍
修练者
修练者
if(x>0&&y>0)cout<<"1";
    if(x<0&&y>0)cout<<"2";
    if(x<0&&y<0)cout<<"3";
    if(x>0&&y<0)cout<<"4"; 

求采纳

鲍欣妍在2018-12-04 21:52:18追加了内容

你第八行错了

应该是cin>>x>>y;

0
我要回答