```dart num sum; // now sum has an int value sum = 4 + 5; // by adding a double, sum now refers to a double value sum = sum + 5.5; ```
確定! 回上一頁