Rewrite your pay computation to give the employee 1.5 times the hourly rate for hours worked above 40 hours
The first line will contain a message prompt to input the integer.
The succeeding lines contain the odd numbers.
Enter·n:·10
9
7
5
3
1
Write a C program based on the Output below:
Note. You can use Conditional Statement and Switch- case Statement
Sample put 1:
Enter Students name: Glearn Noynay
Please select your sexual category by typing Male or Female: Male
Welcome! Mr. Glearn Noynay
Enter your grade in Ethics: 90
Enter your grade in Mathematics: 93.1
Enter your grade in Science: 75.5
Enter your grade in P.E: 83
Enter your grade in Filipino: 89.3
.....analytic rating...... ...Numeric Grade..
A+ 90-100
A 80-89
P 75-79
F Below 75
Hi,Mr.Glearn Noynay,your average grade is 86.18 with an analytic rating of A
Congratulations! You have passed this Semester
1. Create a program based on the attached output using the do-while loop.
2. Your program will keep asking the user to choose from the Options.And the program exits until the user selects Exit.
Create a program based on the attached output using the do-while loop. Your program will keep asking the user to choose from the Options. And the program exits until the user selects Exit.
Write a program to prompt the user for hours and rate per hour to compute gross pay.
Enter hours:35
Enter rate:2.75
Pay:96.2
Given an array A of N integers and two integers X and Y, find the number of integers in the array that are both less than or equal to X and divisible by Y.
Enter·the·first·character:·C
Enter·the·second·character:·c
Enter·the·third·character:·C
Not·Equal
Write a C program to display the month of year using enumeration.
Input:
6
Output
June
Multiply two polynomials of same degree using divide and conquer by Strassen's matrix multiplication method .