 
		qq_最后的需要_0
2015-04-28 13:36
public class HelloWorld{
    public static void main(String[] args) {
     int one = 10 ;
        int two = 20 ;
    
        int three=one+two;
        int three+=one;
       System.out.println(three);错误是这个  error: ';' expected
        int three += one ;
                 ^
 error: not a statement
        int three += one ;
                     ^
 2 errors
 
				你已经一个 int three 了,把第二个 int three换一个名字
Java入门第一季(IDEA工具)
1168084 学习 · 18754 问题
相似问题