Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.68K
~5K People Reached
Favorite Forums
Favorite Tags
java x 1

1 Posted Topic

Member Avatar for emmstarr

import java.util.Scanner; public class FinalTriangle{ public static void main(String[] args){ Scanner input; int lines; do{ input = new Scanner(System.in); System.out.print("Enter number of lines: "); lines = input.nextInt(); for(int i = 1; i <= lines; i++){ for(int j = lines - 9; j > 0; j--){ if(i > 9 && lines …

Member Avatar for Jorge_12
0
5K

The End.