Kumonekta sa mga eksperto at makakuha ng mga sagot sa IDNStudy.com. Sumali sa aming platform upang makatanggap ng mabilis at eksaktong tugon mula sa mga propesyonal sa iba't ibang larangan.

write down the Java expressions equivalent to the statement listed below.
1. assign the value 1.35 to a variable named a
2. add the values of the variables a and b
3. assign to A the remainder when the value of B is divided by 15;
4. increment the value of i by 1;
5. decrement the value of i by 5;
6. divide A by 5 and assign the result to A
7.A and B
8. A is not equal to B
9. A is greater than or equal to B
10. A is equal to 5, or A is greater than B
PLEASE ANSWER ALL OF MY QUESTIONS. THANK YOU! :)


Sagot :

1) float a = 1.35;

2) int sum = a + b;

3) a = b%15;

4) i++;

5)  i = i-5;

6) a = a/5;

7) (A && B)

8) (A!=B)

9)  (A>=B)

10) (A == 5 || A>B)


Maraming salamat sa iyong aktibong pakikilahok. Magpatuloy sa pagtatanong at pagbabahagi ng iyong mga ideya. Ang iyong kaalaman ay mahalaga sa ating komunidad. May mga katanungan ka? Ang IDNStudy.com ang may sagot. Salamat sa iyong pagbisita at sa muling pagkikita.