Posts

Showing posts from August, 2020

C++ Project GYM Management System || Source Code with Explanation | MH Computer Academy || Muhammad Hashmi || Learn Programming

 #include<iostream> #include<conio.h> using namespace std; int main()  {           // Subscribe to MH Computer Academy https://www.youtube.com/watch?v=TEggQhBiBVo&t=255s       // Muhammad Hashmi  while(true)  {         int choice , month, bill;      cout<<"\t\t\t\t%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"<<endl; cout<<"\t\t\t\t\t GYM Management System"<<endl; cout<<"\t\t\t\t1. For the Students"<<endl; cout<<"\t\t\t\t2. For the Business Man"<<endl; cout<<"\t\t\t\t3. For the Employee "<<endl; cout<<"\t\t\t\t14. To Exit the Program"<<endl; cout<<"\t\t\t\t%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"<<endl; cin>>choice; if(choice==1 || choice==2 || choice==3) { switch(choice) { case 1: cout<<"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"<<endl; cout...

How to create Simple ATM Machine in C++ Program||ATM Program deposit withdraw money in c++|Using CLI || C++ project with Source Code || MH Computer Academy(Muhammad Hashmi)

 #include<iostream> #include<conio.h> using namespace std; int main() { //SubScribe to MH Computer Academy( https://www.youtube.com/watch?v=LdRHCa5gyUs&t=290s )      // Muhammad Hashmi     double balance , deposit , withdraw;     int option;     balance=100; //default balance     do{      cout<<"\n\t***************MENU***************"; cout<<"\n\t*                                *"; cout<<"\n\t*      1. Check Balance          *"; cout<<"\n\t*      2. Deposit                *"; cout<<"\n\t*      3. Withdraw               *"; cout<<"\n\t*      4. Transfer               *";...

Car parking program in c++(Urdu | Hindi) for beginners with Source Code simple c++ programs| C++ Mini Projects || Muhammad Hashmi

 #include<iostream> #include<conio.h> using namespace std; int main() { //Writen by Mr. Muhammad Hashmi  // SubScribe to My Channel: MH Computer Academy       int input , amount=0 , count=0;       int rickshaw=0 , bus=0, car=0;       while(true)       {   cout<<"%%%%%%%Parking Management System%%%%%%%"<<endl; cout<<"\tPress 1 for Rickshaw"<<endl; cout<<"\tPress 2 for Car"<<endl; cout<<"\tPress 3 for Bus"<<endl; cout<<"\tPress 4 to Show Record"<<endl; cout<<"\tPress 5 to Delete Record"<<endl; cout<<"\tPress 6 to Exit the Program"<<endl; cout<<"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"<<endl; cin>>input; if(input==1) {// For Rickshaw if(count<=50) {   rickshaw++; amount=amount + 30;  count++;        }      el...