总感觉我这个不对
哈哈哈,你这个没有按照题目的需求来
public class HelloWorld{ public static void main(String[] args) { int one = 10 ; int two = 20 ; int three = 0 ; three = one + two; System.out.println(three); three += one; System.out.println(three); three -= one; System.out.println(three); three *= one; System.out.println(three); three /= one; System.out.println(three); three %= one; System.out.println(three); } }
仅供参考
如果是错误的将不会运行成功哦,只不过其中过程有简便与复杂,但结果会是一模一样的。因此,思维很重要。对于代码要勇于尝试敲击,它不会和化学实验一样,化学实验可能有时候会爆炸,而代码随便你怎么敲最多只会出现无法运行。