Tuesday, 3 July 2018

c++ problems with solutions

  Write a program that print  

   

     This is my book
     I bought it from
       Bilal Book Shop
   

 solution :



#include <iostream>
using namespace std;

int main() {

cout<<"this is my book"<<endl;
  cout<<"I bouth it from "<<endl;
cout<<"bilal book shop"<<endl;

return 0;
}

No comments:

Post a Comment