Computer Science, asked by dk9629983, 9 months ago

4. WAP to print frist 50 multiples of 7​

Answers

Answered by aks255733
0

Answer:

This is the answer 178.5

Answered by AestheticAmaira
0

public class Multiples

{

public static void main(int b)

{

b=7;

do

{

System.out.print(b+" ");

b+=7

}

while (b<=350)

}

}

Similar questions