Computer Science, asked by dwijakishore, 18 days ago

Please help with this java program! Thanks a lot <3!

Attachments:

Answers

Answered by aadak2307
0

Answer:

Your program :-

public class Series

{

public static void main(String args[]) {

for (int i = 1; i <= 10; i++) {

int t = i * i - 1;

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

}

}

}

Explanation:

Hope it is correct and helps you

Similar questions