Write a Java program to print your name four times in same line
Answers
Answered by
15
Answer:
class name
{
public static void main( String args [])
{
for(int i=1;i<=4;i++)
{
System.out.println("your name here");
}
}
}
please mark me as brainliest and follow me
Answered by
1
Answer:
Hope this attachment helps uh
Attachments:
Similar questions