รบกวนช่วยหน่อยครับ
EXT. กำหนดให้ โปรแกรมประกอบด้วยอย่างน้อย 5 ฟังก์ชั่นต่อไปนี้ ได้แก่ main(), findMax(),findMin(), findSum() และ findPrime() เขียนโปรแกรมให้แสดงดังนี้ Output Enter 7 numbers into the vector: 7 3 15 14 2 8 5 <enter> ############# MENU ############# A. Find the maximum number in the vector B. Find the minimum number in the vector C. Find the total of numbers in the vector D. Find all prime numbers in the vector Q. Quit Program Enter your choice <A, B, C or Q> : E <enter> Invalid Choice!! Enter your choice <A, B, C or Q> : @ <enter> Invalid Choice!! Enter your choice <A, B, C or Q> : a <enter> ------------------------------------------------ The maximum number in the vector is 15 ------------------------------------------------ ############# MENU ############# A. Find the maximum number in the vector B. Find the minimum number in the vector C. Find the total of numbers in the vector D. Find all prime numbers in the vector Q. Quit Program Enter your choice <A, B, C or Q> : C <enter> ------------------------------------------------ The total of numbers in the vector is 54 ------------------------------------------------ เป็นต้น
|