VII. QUESTION Write a program that will read an integer and store the prime factors of that integer in an array. For exa
Posted: Mon Jun 06, 2022 1:50 pm
QUESTION Write a program that will read an integer and store the prime factors of that integer in an array. For example, the prime factors of 120 is 2, 2, 2, 3, and 5. VIII. QUESTION You will write a program, which reads the exam grades of N students and displays pass or failed for those students. A student pass/fail a course if her exam grade is larger/smaller than the average exam grade. Your program will also read the number of students N beforehand. IX. QUESTION Write a program that reads the day of the week and displays the day of the week in Turkish. DO NOT USE SWITCH.
VII.