Printing 1111 2222 3333 4444 5555 this table using for loop from java
Sign up to join our community!
Please sign in to your account!
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
public static void main(String[] args)
{
for(int i=1;i<5;i++)
{
for(int j=1;j<5;j++)
{
System.out.print(i);
}
System.out.println();
}
}