Hello experts,
Â
I need a sample code for java program of a school time table because my project seems to be related to this kind of algorithm. I am looking forward for your help. Give me some links and downloadable sample codes.
Thank you.
Need sample code for java program of a school time table
Hello Jermaineporterr,
There is the code to solve your problem. This is sample code for java program of a school time table.
First you have to understand the following code.
Then you have to edit the following code as you needed.
Sample code:
Â
   publicstaticvoidmain(String [] args)
|
   {
|
Â
     String Time,
|
            Name,
|
Â
            Id;
|
     Scanner keyboard = newScanner(System.in);
|
Â
Â
|
     System.out.println(Please enter the Time classstarted?);
|
Â
     Time = keyboard.next();
|
     System.out.println(Please Enter your name);
|
Â
     Name = keyboard.next();
|
     System.out.println(Please enter your Id);
|
Â
     Id = keyboard.next();
|
     System.out.println(Name,Id, Time);
|
Â
Â
Hopefully this above code will solve your problem.
Thanks.
Â