賦值運(yùn)算符這個(gè)題沒看懂啊 任務(wù)要求的是什么意思 是把任務(wù)程序打一遍嗎
public class HelloWorld{
? ? public static void main(String[] args) {
? ?int one = 10 ;
? ? ? ? int two = 20 ;
? ? ? ? int three = 0 ;
? ? ? ? three=one+two==>30;
? ? ? ? three+=one==>40;
? ? ? ? three-=one==>30;
? ? ? ? three*=one==>300;
? ? ? ? three/=one==>30;
? ? ? ? three%=one==>0;
2017-06-03
任務(wù)就是讓你把白框里的東西 ?輸出顯示