求3-3编程题答案,我卡在这里了....求前辈帮帮忙
求答案
求答案
2017-09-20
public class HelloWorld{
public static void main(String[] args) {
int one = 10 ;
int two = 20 ;
int three = 0 ;
System.out.println("three = one + two ==> " + (three = one + two));
System.out.println("three += one ==> " + (three += one));
System.out.println("three -= one ==> " + (three -= one));
System.out.println("three *= one ==> " + (three *= one));
System.out.println("three /= one ==> " + (three /= one));
System.out.println("three %= one ==> " + (three %= one));
}
}
看了一下,就是运算符以及结果的运用,供你参考
举报