Computer Science, asked by ruhiseghal, 6 months ago

write a program to print the series 3,6,9,12,15,...30​

Answers

Answered by dattarajshinde44
1

Answer :

public class table {

public static void main(String[] args) {

 int i = 0;

 int a = 0;

for (i = 0;i < 10;i++) {

System.out.println(a+3);

}

}

}

Similar questions