I need to Produce a Pseudocode
I need to Produce a Pseudocode
#include<iostream>
#include<stdlib.h>
using namespace std;
int main() {
//Declare the values that are expected
int n,g = 0,a[1];
bool flag = false;
//Create an array with a different value
a[0] = 1 + (rand() % 50);
//Write code the flag until the proper feedback is given
while (flag == false) {
//Increment g
g++;
//Request feedback from the customer
cout << "Guess a magic Number between 0 to 100. ";
cin >> n;
//Look if number less than random number
if (n < a[0]) {
cout << " Your Guess is too Low " << endl;
}
//Look if greater than random number
else if (n > a[0]) {
cout << "Your Guess is too High" << endl; } else {
//If the input matches random number in 1st try
if (g == 1) {
cout << "Congratulations, you have guessed the number in first try.";
}
//If the input matches random number in more than 1 try
else {
cout << "Yes, you guessed the right number in " << g << " tries";
}
//Change value
flag = true;
}
}
return 0;
}
Step by step
Solved in 2 steps