Monday, December 28, 2015

Question 1: Introduction to Variable

Based on code below, create a dynamic program that solve problem below:














Source Code:
#include <iostream>
using namespace std;
int main()
{
//static receipt design
cout<<"......................................."<<endl;
cout<<"#       DeAlis Creative Solution\3     #"<<endl;
cout<<"#      No 25 Taman Sungguh Indah      #"<<endl;
cout<<"#          56600 Kuala Lumpur         #"<<endl;
cout<<"......................................."<<endl;
cout<<"  Tarikh: 29/12/2015"<<endl;
cout<<"  Nama Cashier: Rogayah"<<endl;
cout<<"\n";
cout<<"......................................."<<endl; cout<<"  Bil Item Price        "<<endl;
cout<<"......................................."<<endl;
cout<<"  1 Pisang Kaki 5.50         "<<endl;
cout<<"  2 Tomato 3.50         "<<endl;
cout<<"......................................."<<endl;
cout<<" JUMLAH 9.00         "<<endl;
cout<<"......................................."<<endl;
cout<<"\n\n\n";
//QUESTION: INCLUDE VARIABLE BASED ON YOUR RECEIPT DESIGN
}

Hint: List all variables and edit a codes based on given receipt



3 comments:

  1. Wow really nice information here. At the same time the execution model will clearly explain the concepts easily. So please keep update like this.

    SEO Company in Chennai

    ReplyDelete
  2. It is really a great and useful piece of info. I’m glad that you shared this helpful info with us. Please keep us informed like this. Thank you for sharing.

    Digital marketing company in Chennai

    ReplyDelete

Question 1: Introduction to Variable

Based on code below, create a dynamic program that solve problem below: Source Code: #include <iostream> using na...