Quick actions

cmd+k|ctrl+k

Navigation

Languages

brilliant menentukan jenis segitiga

Snippet info

Language

Cpp

Visibility

public

Author

brlinvci

Created

2024-10-17T06:04:19.135508Z

Updated

2024-10-17T06:04:19.135508Z

/* Program untuk Menentukan Jenis Segitiga */
#include <stdio.h>
int main()
{
    int a, b, c;
    scanf("%d %d %d", &a, &b, &c);
    
    if ((a >= b + c) || (b >= a + c) || (c >= a + b))
        printf("Bukan Segitiga");
    else    
INFO