Write a loop that prints " mrecw" 100 times. Each output should begin on a new line
Answers
Answered by
1
Answer:
this is in java
Explanation:
class m{
public static void main(String args[])
{
for(int i=0;i<=100;i++)
{
System.out.println("mrecw") ;
}
}}
Similar questions