Question

In: Computer Science

Write a C++ program test.cpp. The class should contain a protected int member variable var, which...

Write a C++ program test.cpp. The class should contain a protected int member variable var, which is initialized with an integer value between 1 and 50 in a constructor that takes an integer parameter. The class should contain a public member function called play that should print out a sequence of integers as a result of iteratively applying a math function f to the member variable var. The function f is defined as f(x) = (3x+1)/2 if x is odd and f(x) = x/2 if x is even.

Stop the iteration when the value 1 is reached.

Example: When var is 6, the play function's output sequence should be 6,3,5,8,4,2,1.

In the main function create an object of this class whose member var should be initialized with the first command-line argument to the program (i.e., argv[1]) and then call the play member function to output the corresponding sequence of integers. You can check whether the supplied first command-line argument is an integer between 1 and 50 in the main function.

A sample run should look like this...

$./test 6

6 3 5 8 4 2 1

Solutions

Expert Solution

Code:

#include<iostream>
#include<cstdlib>
using namespace std;
class test
{
   protected:
       int var; //protected member declaration
   public:
       test(int v) //parameterised constructor
       {
           var=v;
       }
       void play() //method play
       {
           while(1)
           {
               cout<<var<<" ";
               if(var==1) //if the value is break the loop
               {
                   break;
               }
               if(var%2==0) //if var is even or not
                   var=var/2;
               else //if var is odd
                   var=(3*var+1)/2;
           }
       }
};

int main(int argc,char *argv[])
{
   if(argc!=2) //Check for command line argument passed or not
   {
       cout<<"Usage: ./test {number between 1 to 50}";
   }
   else
   {
       int n=atoi(argv[1]);
       if(n>50||n<1) //Check for the input number is bounded between 1 and 50
       {
           cout<<"Usage: ./test {number between 1 to 50}";
       }  
       else
       {
           test t(n); //creating object to the class
           t.play(); //play method invocation
       }
   }
}

Sample i/o:

when argument 6 is passed.

When no argument is passed:

Explaination:
The class test was written as per the requirements. The sample i/o of different execution was presented for understanding.

please upvote if you like the answer


Related Solutions

write a c++ program. Define a class ‘Matrix’ which contain 2D int array ‘m’ of size...
write a c++ program. Define a class ‘Matrix’ which contain 2D int array ‘m’ of size 3x3 as private member.        There should be two public methods within the class definition namely: void setMatrixValue(int i, int j); that should set m[i][j] with user defined values int getMatrixValue(int i, int j); that should return m[i][j] Make a global function named ‘CrossProduct(Matrix m1, Matrix m2)’ that should compute the marix multiplication
Define a class to represent a Temperature. Your class should contain Instance variable int fahrenheit A...
Define a class to represent a Temperature. Your class should contain Instance variable int fahrenheit A parameterized constructor; Member method to calculate the equivalent temperature in Celsius unit toCelsius() with decimal value. double toCelsius() Conversion formula: celsius= (fahrenheit - 32) * 5/9 Method definition to override the equals() method boolean equals(Object obj)
write a program in java that contain a class for botique . data member include code...
write a program in java that contain a class for botique . data member include code , color , size , quantity . your class should contains all accessor and mutator methods , non paraqmetric constructor , parametric constructor , input andvidsplay method
Write a C++ program where class 1 and class 2 (which is a base class) should...
Write a C++ program where class 1 and class 2 (which is a base class) should have a derived class (class 4 and class 5). Each of the derived classes should include at least 1 variable, 2 functions (one will be showing the function overriding case, the second one will be showing the function overloading case), 2 constructors (with default values, with parameters). Then class 3 (composition) (to relate class 1 and class 2) should include 3 variables (first variable...
Write a C program that defines int minimum (int ji, int j2) which returns the smaller...
Write a C program that defines int minimum (int ji, int j2) which returns the smaller of j1 and j2. (a) Write your program with a global variable for the actual parameter. Translate your C program to Pep/9 assembly language. (b) Write your program with a local variable for the actual parameter. Translate your C program to Pep/9 assembly language.
AskInfoPrintInfo Write a program called AskInfoPrintInfo. It should contain a class called AskInfoPrintInfo that contains the...
AskInfoPrintInfo Write a program called AskInfoPrintInfo. It should contain a class called AskInfoPrintInfo that contains the method main. The program should ask for information from the user and then print it. Look at the examples below and write your program so it produces the same input/output. Examples (the input from the user is in bold face) % java AskInfoPrintInfo enter your name: jon doe enter your address (first line): 23 infinite loop lane enter your address (second line): los angeles,...
UseMath Write a program called UseMath. It should contain a class called UseMath that contains the...
UseMath Write a program called UseMath. It should contain a class called UseMath that contains the method main. The program should ask for a number from the user and then print the information shown in the examples below. Look at the examples below and write your program so it produces the same input/output. Examples (the input from the user is in bold face) % java UseMath enter a number: 0 the square root of 0.0 is: 0.0 rounded to the...
Write a program that uses an array for time and temperature. The program should contain an...
Write a program that uses an array for time and temperature. The program should contain an array with 24 elements, each of which is holding a temperature for a single hour. Your program should have a function that lists all of the temperatures that are held in the array. Temperatures should be listed to console with one entry per line. Your program should have a function that lists a single temperature entry. You should ask the user for a number...
Write a C++ program to create a text file. Your file should contain the following text:...
Write a C++ program to create a text file. Your file should contain the following text: Batch files are text files created by programmer. The file is written in notepad. Creating a text file and writing to it by using fstream: to write to a file, you need to open thew file as write mode. To do so, include a header filr to your program. Create an object of type fsrteam. Open the file as write mode. Reading from a...
write a member function in C++ , that takes two lists and return list that contain...
write a member function in C++ , that takes two lists and return list that contain the merge of the two lists in the returned list: first insert the first list and then the second list  
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT