Advertisement
Guest User

Untitled

a guest
Oct 19th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. */
  2. public class question6 {
  3. public static void main(String[] args) {
  4. String[][] vashist = {
  5. {
  6. "m " , "t" , "w" ,"th","f","Sat","sun"
  7. },
  8. {
  9. "1" , "2" , "3" , "4" , "5" , "6" , "7" , "8" , "9" , "10" , "11" , "12" , "13" , "14" , "15" , "16" , "17" , "18" , "19" , "20" , "21" , "22" , "23" , "24" , "25" , "26" , "27" , "28" , "29" , "30" ,
  10. }
  11.  
  12. } ;
  13. for (int i = 0; i < 7; i++) {
  14. for (int j = 0; j < 30; j++) {
  15. System.out.println(vashist[0][3]+vashist[j][j]);
  16. }
  17.  
  18. }
  19. }
  20.  
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement