PROGRAM 48: Write a program to print your full name 10 times.
PROGRAM 49: Write a program to print all even numbers from 1 to 100.
PROGRAM 50: Write a program to read the marks of 5 subjects of 3 students. Find the total and percentage of each student and print it.
PROGRAM 51: Write a program to print the value of a number raised to power of another.
PROGRAM 52: Write a program which reads a number and prints its factorial.
PROGRAM 53: Write a program to print the table of a given number.
PROGRAM 54: Write a program to read the number of hours worked by 5 employees. Now calculate overtime paid to them at the rate of Rs. 60 per hour, for every hour they worked above 45 hours.
PROGRAM 55: Write a program to input two numbers and an operator and perform an operation according to the operator. Repeat the operation five times.
PROGRAM 56: Write a program to find and print the Greatest Common Divisor (G.C.D.) of two numbers typed in.
PROGRAM 57: Write a program that reverses a number typed in and prints it.
PROGRAM 58: Write a program to read a number and print whether it is a prime number or not.
PROGRAM 59: Write a program to print all prime numbers up till a specified range.
PROGRAM 60: Write a program to calculate average marks of a student using while and nested while loop.
PROGRAM 61: Write a program to calculate average marks of a student using for and nested while loop.
