Created
September 11, 2017 19:57
-
-
Save ChiragDhussa/d958f4e363e0d297824032d7c85308da to your computer and use it in GitHub Desktop.
This file contains hidden or 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 Patterns { | |
| public static void main(String[] args) { | |
| for(int i=1;i<=7;i++) { | |
| for(int j=7;j>=i;j--) { | |
| System.out.print(j+" "); | |
| } | |
| System.out.println(); | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment