MCPcopy Create free account
hub / github.com/KrishGaur1354/Java-Projects-for-Beginners / main

Method main

Bank-Statement/Statement.java:4–12  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

2
3public class Statement {
4 public static void main(String[] args) {
5 Scanner scrn = new Scanner(System.in);
6 System.out.print("Enter your Registered Name : ");
7 String reginame = scrn.next();
8 System.out.print("Enter your Assigned user password : ");
9 String passname = scrn.next();
10 state first = new state(reginame , passname);
11 first.menu();
12 }
13}
14
15class state {

Callers

nothing calls this directly

Calls 1

menuMethod · 0.95

Tested by

no test coverage detected