(NOTE: use onlinegdp as C langugage program) prove a screen shot of the ouput.
Perform the following:
1. Write an essay "Today I have learned..." about module 6.
2. Write a C program that will determine if the input number is even or odd using if-else statement.
Scenario 1 Sample Output:
Enter a number: 2021
Remark: ODD
Scenario 2 Sample Output:
Enter a number: 2022
Remark: EVEN
Your Source Codes Here:
Your Screenshot of Output Here:
3. Write a C program that will accept input values from 1-7 and will display the days of the week using switch statement.
Scenario 1 Sample Output:
Enter a number: 1
Day: Monday
Scenario 2 Sample Output:
Enter a number: 2
Day: Tuesday
Scenario 3 Sample Output:
Enter a number: 3
Day: Wednesday
Scenario 4 Sample Output:
Enter a number: 4
Day: Thursday
Scenario 5 Sample Output:
Enter a number: 5
Day: Friday
Scenario 6 Sample Output:
Enter a number: 6
Day: Saturday
Scenario 7 Sample Output:
Enter a number: 7
Day: Sunday
Scenario 8 Sample Output:
Enter a number: any input other than 1-7 (<1 or="">7)
Day: Invalid value.
Your Source Codes Here:
Your Screenshot of Output Here:
Extracted text: Perform the following: 1. Write an essay "Today I have learned.." about module 6. 2. Write a C program that will determine if the input number is even or odd using if-else statement. Scenario 1 Sample Output: Enter a number: 2021 Remark: ODD Scenario 2 Sample Output: Enter a number: 2022 Remark: EVEN Your Source Codes Here: Your Screenshot of Output Here:
1>