🔒 Closed C language

Status
Not open for further replies.
Ahh ok,
pag positive yung X at positive yung Y = Q1
pag negative x at positive Y = Q2
pag both negative, Q3
pag positive X at negative Y = Q4

pag maski X or Y ay zero = Quadrantal

C:
#include <stdio.h>

main()
{
    float X, Y;

    printf("Enter value of x-coordinate: : ");
    scanf_s("%f", &X);
    printf("Enter value of y-coordinate: : ");
    scanf_s("%f", &Y);
    
    char open = '(', close = ')';

    printf("Point %c%.2f, %.2f%c ", open, X, Y,close);

    if ((X == 0) || (Y == 0))
    {
        printf("is Quadrantal");
    }
    else if ((X > 0) && (Y > 0))
    {
        printf("lies in Quadrant I");
    }
    else if ((X < 0) && (Y > 0))
    {
        printf("lies in Quadrant II");
    }
    else if ((X < 0) && (Y < 0))
    {
        printf("lies in Quadrant III");
    }
    else if ((X > 0) && (Y < 0))
    {
        printf("lies in Quadrant IV");
    }


    getch();
    getch();
}
 
Ahh ok,
pag positive yung X at positive yung Y = Q1
pag negative x at positive Y = Q2
pag both negative, Q3
pag positive X at negative Y = Q4

pag maski X or Y ay zero = Quadrantal

C:
#include <stdio.h>

main()
{
    float X, Y;

    printf("Enter value of x-coordinate: : ");
    scanf_s("%f", &X);
    printf("Enter value of y-coordinate: : ");
    scanf_s("%f", &Y);
   
    char open = '(', close = ')';

    printf("Point %c%.2f, %.2f%c ", open, X, Y,close);

    if ((X == 0) || (Y == 0))
    {
        printf("is Quadrantal");
    }
    else if ((X > 0) && (Y > 0))
    {
        printf("lies in Quadrant I");
    }
    else if ((X < 0) && (Y > 0))
    {
        printf("lies in Quadrant II");
    }
    else if ((X < 0) && (Y < 0))
    {
        printf("lies in Quadrant III");
    }
    else if ((X > 0) && (Y < 0))
    {
        printf("lies in Quadrant IV");
    }


    getch();
    getch();
}
Salamattt!!
 
pap
Ahh ok,
pag positive yung X at positive yung Y = Q1
pag negative x at positive Y = Q2
pag both negative, Q3
pag positive X at negative Y = Q4

pag maski X or Y ay zero = Quadrantal

C:
#include <stdio.h>

main()
{
    float X, Y;

    printf("Enter value of x-coordinate: : ");
    scanf_s("%f", &X);
    printf("Enter value of y-coordinate: : ");
    scanf_s("%f", &Y);
   
    char open = '(', close = ')';

    printf("Point %c%.2f, %.2f%c ", open, X, Y,close);

    if ((X == 0) || (Y == 0))
    {
        printf("is Quadrantal");
    }
    else if ((X > 0) && (Y > 0))
    {
        printf("lies in Quadrant I");
    }
    else if ((X < 0) && (Y > 0))
    {
        printf("lies in Quadrant II");
    }
    else if ((X < 0) && (Y < 0))
    {
        printf("lies in Quadrant III");
    }
    else if ((X > 0) && (Y < 0))
    {
        printf("lies in Quadrant IV");
    }


    getch();
    getch();
}
paps pwede pa sagot sa post ko hahhaa
kapalan ko na muka ko paps hahahha
 
naka post na ako paps kanina hehe

mali siguro channel ko na post

na move ko na sa prog and coding paps hehe
 
Status
Not open for further replies.

About this Thread

  • 5
    Replies
  • 582
    Views
  • 2
    Participants
Last reply from:
zacha

Trending Topics

Online now

Members online
823
Guests online
1,713
Total visitors
2,536

Forum statistics

Threads
2,293,602
Posts
29,085,088
Members
1,207,903
Latest member
yourz1013
Back
Top