xxxxxxxxxx
//Write a program for the Air Force to label an aircraft as military or civilian.
//The program is to be given the plane's observed speed in km/h and its estimated length in meters.
//For planes traveling in excess of 1100 km/h and longer than 52 meters, you should label them as "civilian" aircraft
//and shorter such as 500 km/h and 20 meters as "military" aircraft.
//For planes traveling at more slower speeds and length, you will use an "it's a bird" message.
#include<stdio.h>
main()
{
int s,l;
printf("MUST BE NUMERICAL INPUT\n");
printf("\nEnter the planes traveling speed in km/h: ");
scanf("%d",&s);
printf("\nEnter the planes traveling length in meters: ");
scanf("%d",&l);
if(s>1100&&l>52)
printf("\nCIVILIAN AIRCRAFT");
else if(s>=500&&s<=1100&&l>=20&&l<=52)
printf("\nMILITARY AIRCRAFT");
else if(s<500&&l<20)
printf("\nIT'S A BIRD");
else
printf("\n WRONG INPUTTED CONDITIONAL NUMBER!");
}