🔒 Closed C language pa help po

Status
Not open for further replies.
Baka mali ako ah, matagal na ito eh
Ok, so basically malalaman mo na triangle pag inadd mo lahat ng angles, 180 degrees dapat.
Isosceles - 2 angles are the same
Equilateral - all angles are the same
Scalene - no same angle?

C:
#include <stdio.h>

main()
{
    float angle1, angle2, angle3;
   
    printf("Enter first angle of the triangle: ");
    scanf_s("%f", &angle1);
    printf("Enter second angle of the triangle: ");
    scanf_s("%f", &angle2);
    printf("Enter third angle of the triangle: ");
    scanf_s("%f", &angle3);

    if ((angle1 + angle2 + angle3) == 180)
    {
        if ((angle1 == angle2) && (angle2 == angle3))
        {
            printf("Equilateral triangle");
        }
        else if ((angle1 == angle2) || (angle2 == angle3) || (angle1 == angle2))
        {
            printf("Isosceles triangle");
        }
        else
        {
            printf("Scalene triangle");
        }
    }
    else
    {
        printf("It is not a triangle");
    }


    getch();
    getch();
}
 
Baka mali ako ah, matagal na ito eh
Ok, so basically malalaman mo na triangle pag inadd mo lahat ng angles, 180 degrees dapat.
Isosceles - 2 angles are the same
Equilateral - all angles are the same
Scalene - no same angle?

C:
#include <stdio.h>

main()
{
    float angle1, angle2, angle3;
 
    printf("Enter first angle of the triangle: ");
    scanf_s("%f", &angle1);
    printf("Enter second angle of the triangle: ");
    scanf_s("%f", &angle2);
    printf("Enter third angle of the triangle: ");
    scanf_s("%f", &angle3);

    if ((angle1 + angle2 + angle3) == 180)
    {
        if ((angle1 == angle2) && (angle2 == angle3))
        {
            printf("Equilateral triangle");
        }
        else if ((angle1 == angle2) || (angle2 == angle3) || (angle1 == angle2))
        {
            printf("Isosceles triangle");
        }
        else
        {
            printf("Scalene triangle");
        }
    }
    else
    {
        printf("It is not a triangle");
    }


    getch();
    getch();
}[/C
[/QUOTE]
salamat paps!!
 
Status
Not open for further replies.

Similar threads

About this Thread

  • 2
    Replies
  • 354
    Views
  • 2
    Participants
Last reply from:
zacha

Trending Topics

Online now

Members online
1,282
Guests online
4,148
Total visitors
5,430

Forum statistics

Threads
2,308,764
Posts
29,186,948
Members
1,191,199
Latest member
Burgir_niPapot
Back
Top