菜鸟求解

初学者求解
package hellodate;
import java.util.*;

public class CommaOperator {


public static void mian(String[] args) {

for( int i = 1 , j= i + 10; i< 5 ; i ++ , j = i* 2)
{
System.out.println("i = " + i + "j=" + j);
}


}

}
为什么 运行不了呀
------解决方案--------------------
main写错误
------解决方案--------------------
代码改改吧菜鸟求解

public class Test {

public static void main(String[] args) {
int j = 0;
for(int i = 1 ; i < 5 ; i++ ){
j = i * 2;
System.out.println(j);
}
}
}