WELCOME TO BLOGGER VQGĐC

THÂN CHÀO QUÝ BẠN
CLICK HERE TO OPEN

Tất cả hình ảnh, những hoạt động cùng cơ sở Định Chuẩn rồi cũng cùng với thời gian rơi vào khoảng không
Nếu còn gì rớt lại chỉ là những tình cảm của những con người đã một thời làm việc chung dưới một mái nhà
mà nay đả tản mác khắp bốn phương trời
Ninh Vũ / Phòng Thí Nghiệm VQGĐC

Friday, June 17, 2016

EXAMPLES OF SALE RECEIPTS IN C++ PROGRAM
HÓA ĐƠN 1 .
HÓA ĐƠN C++ PROGRAM CÓ MỘT ARRAY VÀ NHIỀU INPUTS
Sale Receipt In C++ Program Having an Array and Multiple Inputs
*Ghi Chú.
Phơi bày tất cả Array Elements trong hóa đơn.Có ghi ngày bán hàng.
#include <iostream>
#include <string>
using namespace std;
void display1(){
         cout << "HENRY FARMER MARKET.\n";
         cout<<" Giá Bán Phải Chăng.\n";
         cout<<"Trân Trọng Kính Mời.\n";
         cout<<"------------------ \n";}
void display2(){
string item [4]={ "Rice/1.50/lb","Cafe/7.50/pot", "Sugar/1.25/lb","Milk/1.45/can"};
     for(int i = 0; i < (sizeof(item) / sizeof(item[0])); i++){
     cout << "ITEM NAME " << i+1 << ": " << item[i] << endl;}}
void setDate(int month, int day, int year{     
     cout << month << "/" << day << "/" << year<<"\n";}
int main(){
 display1(); // call functions display1 and display2
 display2(); 
 string pass1 = "Rice";
 string pass2 = "Cafe";
 string pass3 = "Sugar";
 string pass4 = "Milk";
 int qty1, qty2, qty3, qty4 ;
 cout<< "ENTER ITEM NAME AND QUANTITY : "<<endl;
 cin >>pass1 >>qty1 ;
 cout<< " ITEM NAME : "<< pass1 <<endl;
 cout<< " QUANTITY : "<< qty1 <<endl;
              cout<<"You pay :"<< pass1<< " : " << 1.5*qty1<< "USD" <<endl;
 cin >>pass2 >>qty2 ;
 cout<< " ITEM NAME : "<< pass2 <<endl;
 cout<< " QUANTITY : "<< qty2 <<endl;
              cout<< "You pay :"<< pass2 << " : " << 7.5*qty2<< "USD" <<endl;
 cin >>pass3 >>qty3 ;
 cout<< " ITEM NAME : "<< pass3 <<endl;
 cout<< " QUANTITY : " << qty3 <<endl;
 cout<<"You pay :"<< pass3 << " : " << 1.25*qty3<<"USD"<<endl;
 cin >>pass4 >>qty4 ; 
 cout<< " ITEM NAME : "<< pass4 <<endl;
 cout<< " QUANTITY : "<< qty4 <<endl;
 cout<< "You pay :"<< pass4 << " : " << 1.45*qty4<<"USD" <<endl;
cout<< "YOU PAY TOTAL :"<<1.5*qty1+7.5*qty2+1.25*qty3+1.45*qty4 <<"USD" <<endl;
cout <<"Ngày :"<<endl;
setDate(6,16, 2016); // call function setDate
cout << " THANK YOU . SEE YOU AGAIN " <<endl;
 return 0; }
*GHI CHÚ.
Món nào không mua thì viết tên món đó và viết con số zero cho quantity
Using IDEDr Compiler online
https://idedr.com/pub/t55h84Q66N
INPUT
Rice
10
Cafe
10
Sugar
0
Milk
10
OUTPUT
HENRY FARMER MARKET.
Giá Bán Phải Chăng.
Trân Trọng Kính Mời.
------------------ 
ITEM NAME 1: Rice/1.50/lb
ITEM NAME 2: Cafe/7.50/pot
ITEM NAME 3: Sugar/1.25/lb
ITEM NAME 4: Milk/1.45/can
ENTER ITEM NAME AND QUANTITY : 
ITEM NAME : Rice
QUANTITY : 10
You pay :Rice : 15USD
ITEM NAME : Cafe
QUANTITY : 10
You pay :Cafe : 75USD
ITEM NAME : Sugar
QUANTITY : 0
You pay :Sugar : 0USD
ITEM NAME : Milk
QUANTITY : 10
You pay :Milk : 14.5USD
YOU PAY TOTAL :104.5USD
Ngày :
6/16/2016
THANK YOU . SEE YOU AGAIN 

HÓA ĐƠN 2.
HÓA ĐƠN C++ PROGRAM CÓ MỘT ARRAY VÀ NHIỀU INPUTS
Sale Receipt In C++ Program Having an Array and Multiple Inputs
*GHI CHÚ.
PHÔ BÀY TẤT CẢ ARRAY ELEMENTS TRONG PROGRAM.
 Xử dụng mỗi Array Element để tính tiền.Không có ngày bán hàng.

#include <iostream>
#include <string>
using namespace std;
void display(){
         cout << "HENRY FARMER MARKET.\n";
         cout<<" Giá Bán Phải Chăng.\n";
         cout<<"Trân Trọng Kính Mời.\n";
         cout<<"------------------ \n";}
 
int main(){
 display();//call function display ở phần trên
 string item [4]={ "Rice/1.50/lb","Cafe/7.50/pot", "Sugar/1.25/lb","Milk/1.45/can"};
     for(int i = 0; i < (sizeof(item) / sizeof(item[0])); i++)
{cout << "ITEM NAME " << i+1 << ": " << item[i] << endl;} //Phải có mới ok
string pass1 = "Rice";
 string pass2 = "Cafe";
 string pass3 = "Sugar";
 string pass4 = "Milk";
 int qty1, qty2, qty3, qty4 ;
 cout<< "ENTER ITEM NAME AND QUANTITY : "<<endl;
 cin >>pass1 >>qty1 ;
 cout<< " ITEM NAME : "<< pass1 <<endl;
 cout<< " QUANTITY : "<< qty1 <<endl;
              cout<<"You pay :"<< item[0] << " : " << 1.5*qty1<< "USD" <<endl;
 cin >>pass2 >>qty2 ;
 cout<< " ITEM NAME : "<< pass2 <<endl;
 cout<< " QUANTITY : "<< qty2 <<endl;
              cout<< "You pay :"<< item[1]   << " : " << 7.5*qty2<< "USD" <<endl;
 cin >>pass3 >>qty3 ;
 cout<< " ITEM NAME : "<< pass3 <<endl;
 cout<< " QUANTITY : " << qty3 <<endl;
 cout<<"You pay :"<< item[2]  << " : " << 1.25*qty3<<"USD"<<endl;
 cin >>pass4 >>qty4 ; 
 cout<< " ITEM NAME : "<< pass4 <<endl;
 cout<< " QUANTITY : "<< qty4 <<endl;
 cout<< "You pay :"<< item[3]   << " : " << 1.45*qty4<<"USD" <<endl;
cout<< "YOU PAY TOTAL :"<<1.5*qty1+7.5*qty2+1.25*qty3+1.45*qty4 <<"USD" <<endl;
cout << " THANK YOU . SEE YOU AGAIN " <<endl;
 return 0; }

OUTPUT

C++Shell Compiler online

HENRY FARMER MARKET.
 Giá Bán Phải Chăng.
Trân Trọng Kính Mời.
------------------
ITEM NAME 1: Rice/1.50/lb
ITEM NAME 2: Cafe/7.50/pot
ITEM NAME 3: Sugar/1.25/lb
ITEM NAME 4: Milk/1.45/can
ENTER ITEM NAME AND QUANTITY :
 ITEM NAME : Rice
 QUANTITY : 0
You pay :Rice/1.50/lb : 0USD
 ITEM NAME : Cafe
 QUANTITY : 10
You pay :Cafe/7.50/pot : 75USD
 ITEM NAME : Sugar
 QUANTITY : 100
You pay :Sugar/1.25/lb : 125USD
 ITEM NAME : Milk
 QUANTITY : 0
You pay :Milk/1.45/can : 0USD
YOU PAY TOTAL :200USD

 THANK YOU . SEE YOU AGAIN

----------
HENRY FARMER MARKET.
 Giá Bán Phải Chăng.
Trân Trọng Kính Mời.
------------------
ITEM NAME 1: Rice/1.50/lb
ITEM NAME 2: Cafe/7.50/pot
ITEM NAME 3: Sugar/1.25/lb
ITEM NAME 4: Milk/1.45/can
ENTER ITEM NAME AND QUANTITY :
 ITEM NAME : Rice
 QUANTITY : 10
You pay :Rice/1.50/lb : 15USD
 ITEM NAME : Cafe
 QUANTITY : 0
You pay :Cafe/7.50/pot : 0USD
 ITEM NAME : Sugar
 QUANTITY : 0
You pay :Sugar/1.25/lb : 0USD
 ITEM NAME : Milk
 QUANTITY : 100
You pay :Milk/1.45/can : 145USD
YOU PAY TOTAL :160USD
 THANK YOU . SEE YOU AGAIN

HÓA ĐƠN 3.
C++ PROGRAM XỬ DỤNG CHỮ IF VÀ CHỈ CÓ HAI INPUTS ĐƠN GIẢN.
#include <iostream>
#include <string>
using namespace std;
void display1(){
         cout << "HENRY FARMER MARKET.\n";
         cout<<" Giá Bán Phải Chăng.\n";
        cout<<"Trân Trọng Kính Mời.\n";
         cout<<"------------------ \n";}
void display2(){
cout << " BẠN MUỐN MUA GÌ VÀ SỐ LƯỢNG BAO NHIÊU ? :"<<endl;}
int main(){
 display1();
 display2(); 
 string pass1 = "Rice";
 string pass2 = "Cafe";
 string pass3 = "Sugar";
 string pass4 = "Milk";
 string input ;
 int qty ;
 cout<< " ENTER ITEM AND QUANTITY YOU WANT: "<<endl;
 cin >>input>>qty;
 cout<< " ITEM NAME : "<< input <<endl;
 cout<< " QUANTITY : "<< qty <<endl;
 if(input==pass1){
              cout<<"Bạn mua Rice : "<< qty<<"lbs"<< "\n";
                cout<<"You pay :"<<1.5*qty<< "USD" <<endl;}
 if(input==pass2){
 cout<<" Bạn mua Café : "<< qty<<"pots"<<"\n";
 cout<< "You pay :"<<7.5*qty<< "USD"<<endl;}
 if(input==pass3){
 cout<<"Bạn mua Sugar : "<< qty<<"lbs"<< "\n";
 cout<<"You pay :"<<1.25*qty<<"USD"<<endl;}
 if(input==pass4){
 cout<<" Bạn mua Milk : "<< qty<<"cans"<<"\n";
 cout<<"You pay :"<<1.45*qty<<"USD" <<endl;}
cout << " THANK YOU . SEE YOU AGAIN " <<endl;
 return 0; }
OUTPUT
Using C++ Shell Compiler online
HENRY FARMER MARKET.
 Giá Bán Phải Chăng.
Trân Trọng Kính Mời.
------------------
 BẠN MUỐN MUA GÌ VÀ SỐ LƯƠNG BAO NHIÊU ? :
 ENTER ITEM AND QUANTITY YOU WANT:
 ITEM NAME : Cafe
 QUANTITY : 10
 Bạn mua Café : 10pots
 You pay :75USD
 THANK YOU . SEE YOU AGAIN
HENRY FARMER MARKET.
 Giá Bán Phải Chăng.
Trân Trọng Kính Mời.
------------------
 BẠN MUỐN MUA GÌ VÀ SỐ LƯỢNG BAO NHIÊU ? :
 ENTER ITEM AND QUANTITY YOU WANT:
 ITEM NAME : Sugar
 QUANTITY : 10
Bạn mua Sugar : 10lbs
You pay :12.5USD
 THANK YOU . SEE YOU AGAIN
******************
HENRY FARMER MARKET.
 Giá Bán Phải Chăng.
Trân Trọng Kính Mời.
------------------
 BẠN MUỐN MUA GÌ VÀ SỐ LƯỢNG BAO NHIÊU ? :
 ENTER ITEM AND QUANTITY YOU WANT:
 ITEM NAME : Cafe
 QUANTITY : 100
 Bạn mua Café : 100pots
You pay :750USD
 THANK YOU . SEE YOU AGAIN


Friday, June 10, 2016

PROGRAM C++ DÙNG PASSWORD ĐỂ MỞ HỒ SƠ NHÂN VIÊN XÍ NGHIỆP

PROGRAM C++ DÙNG PASSWORD ĐỂ MỞ HỒ SƠ NHÂN VIÊN XÍ NGHIỆP

1-WRITING A SIMPLE PASSWORD IN PROGRAM C++
#include <iostream>
#include <string>
using namespace std;
int main(){
    string pass = "123456";
    string input;
    cout << "What is your password: "<<"\n" ;
    cin >> input;
    if (input==pass){
        cout << "Correct" << endl;
    }else{
        cout << "Wrong" << endl;
    }
    return 0;
}
OUTPUT

123456
What is your password: Correct

321456
What is your password: Wrong

2-USING PASSWORD TO OPEN EACH EMPLOYEE’S FILE IN PROGRAM C++
#include <iostream>
#include <string>
using namespace std;
  void display() {
string name [5]={"Henry/Manager/45000","Pano/Electrician/35000", "Juan/Machinist/35000","Bill/Receptionist/30000","Janet/Clerk/25000"};
  cout<<name[4] << ".\n";};
int main(){
    string pass = "12345679";
    string input;
    cout << "Enter your password: "<<"\n" ;
    cin >> input;
    if (input==pass){ // call function ở đây
        display();
    }else{
        cout << "Wrong password" << endl;
    }
    return 0;
}
OUTPUT
12345
Enter your password: 
Wrong password

12345679
Enter your password: 
Janet/Clerk/25000.

3-PROGRAM C++ DÙNG PASSWORD ĐỂ MỞ DANH SÁCH NHÂN VIÊN XÍ NGHIỆP
USING PASSWORD TO OPEN THE EMPLOYEE’S LIST IN A PROGRAM C++

#include <iostream>
#include <string>
using namespace std; 
void display(){
string array [5]={ "Henry/Manager/45000","Pano/Electrician/35000", "Juan/Machinist/35000","Bill/Receptionist/30000","Janet/Clerk/25000"};
     cout << "Danh sách chức vụ và lương bổng chứa trong array file :\n" << endl;
     for(int i = 0; i < (sizeof(array) / sizeof(array[0])); i++){
     cout << "Tên " << i+1 << ": " << array[i] << endl;}
}
int main(){
    string pass = "12345679";
    string input;
    cout << "Enter your password "<<endl ;
    cin >> input;
    if (input==pass){
    display(); }
    else{ cout << "Wrong password.File won’t open "<< endl;}
    return 0;} 
OUTPUT

3125672
Enter your password.
Wrong password.File won’t open 

12345679
Enter your password: 
Danh sách chức vụ và lương bổng chứa trong array file:
Tên 1: Henry/Manager/45000
Tên 2: Pano/Electrician/35000
Tên 3: Juan/Machinist/35000
Tên 4: Bill/Receptionist/30000
Tên 5: Janet/Clerk/25000

GHI CHÚ. Có thể thay những con số bằng chữ viết.

Thí  dụ string pass = "baxaoquachoi";

4-PRORAM C++ CỦA HOÁ ĐƠN MUA TRÁI CÂY .

#include <iostream>
#include <string>
using namespace std; 
int main(){
   string array [5]={ "Banana/0.10/lb","Mango/0.50/ea", "Durion/1.25/lb","Nhãn/0.75/lb","Chôm Chôm/0.65/lb"};
   string pass1 = "1234";
   string pass2 = "1235";
   string pass3 = "1236";
   string pass4 = "1237";
   string pass5 = "1238";
   string input;
   cout << "Enter your passcode "<<endl ;
   cin >> input;
   cout<< "Mua bao nhiêu? " << "\n ";
   int qt;
   cin>> qt;
   cout<< " Bạn mua : "<< qt <<endl;
   if (input==pass1){ cout << "Tên trái cây :" << array[0] << endl;
   cout<< " Tiền phải trả : "<<0.10*qt <<"USD"<<endl; }
   if (input==pass2){ cout << "Tên trái cây :" << array[1] << endl;
   cout<< " Tiền phải trả : "<<0.50*qt <<"USD"<<endl; }
   if (input==pass3){ cout << "Tên trái cây :" << array[2] << endl;
   cout<< " Tiền phải trả : "<<1.25*qt <<"USD"<<endl; }
   if (input==pass4){ cout << "Tên trái cây :" << array[3] << endl;
  cout<< " Tiền phải trả : "<<0.75*qt <<"USD"<<endl; }
   if (input==pass5){ cout << "Tên trái cây :" << array[4] << endl; 
   cout<< " Tiền phải trả : "<<0.65*qt <<"USD"<<endl; }
           return 0;}
  OUTPUT
Enter your passcode  1236
Mua bao nhiêu? 
Bạn mua : 100
Tên trái cây :Durion/1.25/lb
Tiền phải trả : 125USD
----------------------
Enter your password 1238
Mua bao nhiêu? 
Bạn mua : 20
Tên trái cây : Chôm Chôm/0.65/lb
Tiền phải trả : 13USD

Enter your password 1236
Mua bao nhiêu? 
Bạn mua : 10
Tên trái cây : Durion/1.25/lb
Tiền phải trả : 12.5USD


Enter your passcode 1235
Mua bao nhiêu? 
Bạn mua : 100
Tên trái cây : Mango/0.50/ea
Tiền phải trả : 50USD