The world’s Largest Sharp Brain Virtual Experts Marketplace Just a click Away
Levels Tought:
Elementary,Middle School,High School,College,University,PHD
| Teaching Since: | Apr 2017 |
| Last Sign in: | 327 Weeks Ago, 5 Days Ago |
| Questions Answered: | 12843 |
| Tutorials Posted: | 12834 |
MBA, Ph.D in Management
Harvard university
Feb-1997 - Aug-2003
Professor
Strayer University
Jan-2007 - Present
CMPSC 101 – LAB 14
Write a program to ask the user to enter 6 numbers and store them into an integer
array. Then examine the array, if the numbers in the array are all unique, display
message “All unique!”, otherwise display the message “Not all unique!”.
Sample run 1:
enter a number:
enter a number:
enter a number:
enter a number:
enter a number:
enter a number:
All unique! 1
87
3
19
56
777 Sample run 2:
enter a
enter a
enter a
enter a
enter a
enter a
Not all number:
number:
number:
number:
number:
number:
unique! 8
9
10
8
10
788 Directions: Use the following program structure for your main.
You may create more functions if you wish, but it is not required.
int main() {
int myArray[6];
// code to fill in the array from the user
// code to determine if all of the values are unique
return 0;
}
NOTE: DO NOT USE GLOBAL VARIABLES!!!!!
A global variable is a variable that is defined outside of any function
(including main). We don't cover them in this course because they are generally
a very bad idea. So, don't do this in your projects!
ALSO: DO NOT USE ANY ASPECT OF C++ WHICH IS NOT COVERED IN THIS
COURSE. This includes libraries, etc.
-----------