题目
题目

SENG1050 (T3 2025 PSB) Practice Quiz Week 6

简答题

Consider the following PHP fragment: $int1 = 5; $int2 = $int1++; $int3 = $int1++ +  $int2++; What will the variable $int1 contain after each of these statements has executed?

查看解析

查看解析

标准答案
Please login to view
思路分析
We start with: $int1 = 5; $int2 is assigned from $int1++ and then $int3 from the sum of two post-increment expressions. First statement: $int2 = $int1++; - The post-increment returns the original value of $int1 (5) and then increments $int1 by 1. - After this line, $int1 becomes 6, and $int2 is 5. Second statement: $int3 = $int1++ + $int2++; - Evaluation happens lef......Login to view full explanation

登录即可查看完整答案

我们收录了全球超50000道考试原题与详细解析,现在登录,立即获得答案。

更多留学生实用工具

加入我们,立即解锁 海量真题独家解析,让复习快人一步!