4. WAP to print frist 50 multiples of 7
Answers
Answered by
0
Answer:
This is the answer 178.5
Answered by
0
public class Multiples
{
public static void main(int b)
{
b=7;
do
{
System.out.print(b+" ");
b+=7
}
while (b<=350)
}
}
Similar questions