Question

In: Computer Science

its a c++ programme. In your program, you will randomly generate integer numbers between -50 and...

its a c++ programme.

In your program, you will randomly generate integer numbers between -50 and +50 (including -50 and +50). You will repeat this process 1000 times. While generating these numbers, you need to count the numbers based on their signs separately, as positive and negative. For instance, if your program generate +25 15 times, and -25 19 times. Then this should be reported as,

Num PosFre NegFre
25  15     19

For this problem, you need to use array of struct, similar to depicted below.

Number

PosFre

NegFre

Number

PosFre

NegFre

Number

PosFre

NegFre

Number

PosFre

NegFre

…..

…..

…..

Report all number from 1 to 50 in an ascending order. Note that you will not use any sort algorithm in this assignment.

A sample output is given as

Num PosFre NegFre
1   13     45

2   54     59

3   55     16

4   35     9

...

...

...

49 44    29

50 35    69

Solutions

Expert Solution

#include <iostream>
#include <cstdlib>
#include <iomanip>

using namespace std;

//structure
struct number
{
int num;
int posFre;
int negFre;
};

int main()
{
struct number n[100];
  
int randNum;
  
for(int i = 0; i<=50; i++)
{
n[i].num = i;
n[i].negFre = 0;
n[i].posFre = 0;
}
  
for(int i = 0; i<1000; i++)
{
//generate random number
randNum = rand() % 101 - 50;

if(randNum<0)
{
n[abs(randNum)].negFre = n[abs(randNum)].negFre + 1;
}
else
{
n[randNum].posFre = n[randNum].posFre + 1;
}
}
  
//display message
cout<<"Num"<<setw(10)<<"posFre"<<setw(10)<<"negFre"<<endl;
  
//display the list
for(int j = 1; j<=50; j++)
{
cout<<n[j].num<<setw(7)<<n[j].posFre<<setw(10)<<n[j].negFre<<endl;
}
  
return 0;
}

OUTPUT:

Num posFre negFre
1 8 11
2 4 8
3 10 10
4 8 12
5 9 4
6 5 12
7 14 12
8 10 5
9 14 10
10 9 10
11 12 17
12 11 10
13 11 13
14 12 8
15 11 12
16 10 8
17 9 12
18 8 11
19 10 10
20 10 8
21 14 8
22 9 11
23 9 11
24 3 9
25 11 13
26 13 11
27 19 8
28 11 6
29 6 8
30 9 8
31 13 11
32 7 10
33 13 6
34 10 8
35 6 11
36 9 12
37 12 11
38 6 7
39 11 9
40 4 17
41 8 11
42 8 16
43 8 14
44 13 6
45 9 14
46 9 11
47 15 9
48 5 10
49 8 7
50 12 15



Related Solutions

Write a C++ program that randomly generates N integer numbers (such that N is entered by...
Write a C++ program that randomly generates N integer numbers (such that N is entered by the user) and then stores them to a text file (myNumbers.txt) sorted in increasing (non-decreasing) order. Again, please notice that the size of the data (N) is known during the run time, not the compile-time (needs to be entered by the user after running the program).
Write an Arduino code that does the following. Generate 50 random numbers between the numbers 100...
Write an Arduino code that does the following. Generate 50 random numbers between the numbers 100 and 300. Pick a number at random out of these 50 random variables. a. Determine the probability of the chosen number being greater than 200. This may be achieved by counting the numbers that are greater than 200 and dividing the count by 50. Make sure you, i.Formulate the appropriate if-conditions to check for a number being greater than 200 ii. Use a for-loop...
Write a C++ program to read a collective of integer numbers. I f the number is...
Write a C++ program to read a collective of integer numbers. I f the number is greater than zero and less than 15 then terminate the loop and find factorial of the number
(Do the algorithm and flowchart) Write a C++ program that reads integer numbers and print it...
(Do the algorithm and flowchart) Write a C++ program that reads integer numbers and print it in horizontal order of the screen
For this problem, you will write a program using two queues. Generate n random numbers between...
For this problem, you will write a program using two queues. Generate n random numbers between 10 and 100 (both inclusive), where n>9. The value of n should be taken as input from the user and n should be >9. The numbers could be duplicated. Enqueue all these numbers to the first queue. The objective is to find the numbers whose sum of digits is odd and enqueue them to the second queue. The remaining numbers (whose sum of digits...
Write a program to produce an array of integer random numbers. Your program should find out...
Write a program to produce an array of integer random numbers. Your program should find out from the user how many numbers to store. It should then generate and store that many random integers (the random numbers must be between 1 and 999 inclusive). The program should then determine the smallest number, the largest number, and the average of all the numbers stored in the array. Finally, it should print out all the numbers on the screen, five numbers to...
Write a C program that asks the user to enter 15 integer numbers and then store them in the array.
Write a C program that asks the user to enter 15 integer numbers and then store them in the array. Then, the program will find the second largest element in array and its index without sorting the array. For example, In this array {-55,-2,1, 2, -3, 0, 5, 9, 13, 1, 4, 3, 2, 1, 0}, the second largest element is 9 [found at index 7].
Write a C++ console application to simulate a guessing game. Generate a random integer between one...
Write a C++ console application to simulate a guessing game. Generate a random integer between one and 100 inclusive. Ask the user to guess the number. If the user’s number is lower than the random number, let the user know. If the number is higher, indicate that to the user. Prompt the user to enter another number. The game will continue until the user can find out what the random number is. Once the number is guessed correctly, display a...
Question : Write a C program that asks the user to enter an integer between 1...
Question : Write a C program that asks the user to enter an integer between 1 and 7 that represents a weekday number (1 = Sunday, 2 = Monday , …… , 6 = Friday , 7 = Saturday) and it prints the day (i.e., Sunday, Monday, …… , Friday or Saturday). The program continuously asks the user to enter a weekday number till the user responds by ‘N’. and give me an output please use printf and scanf #include...
Write a C++ program to swap two numbers and show your output
Write a C++ program to swap two numbers and show your output
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT