1041 - Coordinates of a Point

Problem Link


A Solution in c


#include<stdio.h>
int main()
{
    float x, y;
    scanf("%f %f", &x, &y);
    if(x == 0 && y == 0)
    {
        printf("Origem\n");
    }
    else if(x == 0)
    {
        printf("Eixo Y\n");
    }
    else if(y == 0)
    {
        printf("Eixo X\n");
    }
    else if(x > 0 && y > 0)
    {
        printf("Q1\n");
    }
    else if(x > 0 && y < 0)
    {
        printf("Q4\n");
    }
    else if(x < 0 && y > 0)
    {
        printf("Q2\n");
    }
    else
    {
        printf("Q3\n");
    }
    return 0;
}





No comments

Theme images by Jason Morrow. Powered by Blogger.