Created
August 15, 2020 13:08
-
-
Save neer2808/8d726488c5bd8b089781bbe5acdf7fc6 to your computer and use it in GitHub Desktop.
neeraj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Test { | |
public static void main(String[] args) { | |
String[] days = new String[] {"sun", "mon", "tue", "wed", "thr", "fri", "sat", "sun"} ; | |
for(int i =1;i<=days.length ;i++) | |
System.out.println (days[i]); | |
int arr[] = new int[] {10,20,30,40}; | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment