Write a program that reads in ten numbers and displays distinct numbers (i.e., if a number appears multiple times, it is displayed only once).
Hint: Read a number and store it to an array. If the number is already in the array, discard it.
Your program should contain a function called IsNewNumber( int num) that returns true if the num is in the array; otherwise, returns false if the num is not in the array.
When the user has entered 10 numbers, a message should be displayed and set the OK button to be disabled.