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
1 Posted Topic
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 …
The End.