Advertisement
Guest User

sho_2

a guest
Feb 24th, 2020
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. package com.company;
  2. public class Main {
  3. public static void main(String[] args) {
  4. int a;
  5. for (int i = 1; i < 11; i++) {
  6. a = i * i;
  7. System.out.println(a);
  8. }
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement