Level 1 & 2 More Programs

This commit is contained in:
2021-06-07 10:35:48 +05:30
parent 688319db00
commit f56d525b45
9 changed files with 204 additions and 3 deletions

7
CommandLineInput.java Normal file
View File

@@ -0,0 +1,7 @@
// Write a program in java to demonstrate input from keyboard using Comand Line Argument.
class CommandLineInput{
public static void main(String args[]) {
System.out.println("Your first argument is: "+args[0]);
}
}