Computer Science, asked by hsai3862, 1 year ago

Write a loop that prints " mrecw" 100 times. Each output should begin on a new line

Answers

Answered by Pankushh
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