What's new

C language pa help po

zacha

Forum Veteran
Established
Joined
Sep 5, 2021
Posts
777
Reaction
56
Points
685
1652976723904.png
 

Attachments

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();
}
 
Last edited:
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!!
 

Similar threads

Back
Top