package com.shrimpking.t1;

/**
 * Created by IntelliJ IDEA.
 *
 * @Author : Shrimpking
 * @create 2024/9/13 22:05
 */
public class TestJavaForLoop
{
    public static void main(String[] args)
    {
        int x;
        for (x = 1; x < 3; x++){
            System.out.println(x + "*" + x + "=" + x * x);
        }
    }
}