Computer Science, asked by mahimadewangan7, 1 year ago

write a program in c++ to print the following output on bank's cheque****15999​

Answers

Answered by sivaleeba10
1

Answer:

ap allowed by and European and Asian and Englishmen I have been

Answered by StaceeLichtenstein
0

Program in c++ to print the following output on   bank's cheque****15999​ is givenh below

Explanation:

#include <iostream> // header file

using namespace std; // using namespace

int main() // main method

{

   int chq_num; // variable declaration

   cout<<"Enter the bank cheque number :";

   cin>>chq_num; // Read the number by the user

   cout<<"****"<<chq_num; // Print the number in the desired format .

   return 0;

}

Output:

Enter the bank cheque number :15899

****15899

Following are the desciption of the program

  • Read the cheque number by the user in the "chq_num" variable
  • Print the number followed by the asterisk (*) as mention in the question

Learn More :

https://brainly.in/question/6319134

Similar questions