Computer Science, asked by arvi45, 10 months ago

Write a short program to point following series 14710....40

Answers

Answered by vicky8764
2

Answer:

class print

{

public static void main()

{

for(int i=1;i<=40;i+=3)

System.out.print(i);

}

}

Similar questions