🔒 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
  • 352
    Views
  • 2
    Participants
Last reply from:
zacha

Trending Topics

Online now

Members online
813
Guests online
1,697
Total visitors
2,510

Forum statistics

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