
// C08_Ex 9: Input 3 whole number.// 3 This is an integer form three sides of a triangle or not ?// If so, what is the triangle?#include <stdio.h>void main(){ int a, b, c; printf("Input 3 whole number: "); scanf("%d%d%d", &a, &b, &c); if (a + b > c && a + c > b && b + c > a) { ...