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.55K
~365 People Reached
Favorite Forums
Favorite Tags
java x 1

1 Posted Topic

Member Avatar for armani05

public static void main(String[] args){ no Scanner scan = new Scanner(System.in); System.out.print("Enter how many stars do you want to see at max : "); numstar=scan.nextInt(); System.out.println(); for(int row=0; row<numstar; row++) { for(int col=0; col<numstar-row; col++) { System.out.print("X"); System.out.print(" "); } System.out.println(); } }}

Member Avatar for stultuske
0
365

The End.