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
1 Posted Topic
Re: 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(); } }} |
The End.