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 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