HelpMeOutAlways: Projects
Showing posts with label Projects. Show all posts
Showing posts with label Projects. Show all posts

Saturday, March 2, 2019

Logic Gates Program In Java(Project)
March 02, 20190 Comments
Source Code import java.util.Scanner; //===================================================================================================================== class star{       public void star(){         for(int i=1;i<=50;i++){             System.out.print("*");         }     } } class OrGate extends star{     int or1,or2;  ...
Reading Time:
1 Min

Sunday, June 10, 2018

ATM Program In C language (SHows Notes of 5000,1000,500,100,50 and 10)
June 10, 20181 Comments
Here you can find the source code of ATM Machine Program Transaction In C language by HelpMeOutAlways. ATM Machine Program Source Code  #include <stdio.h> unsigned long int amount = 50000, depositS; //Number Of Notes Available in The ATM Machine, down below statements unsigned long int FiveThousandNotes = 50; unsigned long int ThousandNotes = 50; unsigned long int FiveHundredNotes = 50; unsigned long int OneHundredNotes = 50; unsigned...
Reading Time:
1 Min

@way2themes