Computer Science, asked by dhanvi6525, 2 months ago

Write a program to input the name and age of a Child and print if he/she is eligible for the Kids Discount. The Kids Discount is valid for those under the age of 14.

Answers

Answered by PiratedHelper
0

Answer:

I am just writing the logic part. I am sure you can write the input statements and output statements and other repetitive things. This program is written for JAVA

Explanation:

int n;

if( n<14)

System.out.println(" You are eligible for Kids Discount")

else

System.out.println( "You are not eligible for Kids Discount")

Please Mark as Brainliest!!

Similar questions