问:我无法找到让 Treehouse 接受答案的代码出错的地方。
类型.swift
让 firstValue : Double = 12
let secondValue : Double = 56
let product : Double = firstValue * secondValue
let output : String = " \( firstValue )乘以\( secondValue ) 的乘积是\( product ) "
答:你不应该指定 Double 作为数据类型,它应该是 Int。
让 firstValue : Int = 8
let secondValue : Int = 9
let product : Int = firstValue * secondValue
let output : String = " \( firstValue )乘以\( secondValue ) 的乘积是\( product ) "