1

我开始使用 TouchDevelop 进行编程,但我输入了以下错误。

action main ()      
var strings := collections → create string collection      
strings → set at(1, "I")      
strings → set at(2, "II")      
strings → set at(3, "III")      
strings → set at(4, "IV")      
strings → set at(5, "V")      
strings → set at(6, "VI")      
var x := math → random(6) + 1      
var s := strings → at(x)      
"The value of dice is " → concat(s) → post to wall # ERROR AT CONCAT(S)
4

1 回答 1

0

对于 touchdevelop 语言,您要使用字符串连接字符,即 || . 您的线路将是:

"The value of dice is " || s → post to wall

如果您使用的是 Windows Phone 7,则可以在数学运算符旁边的左侧第三个菜单中找到双竖线字符。

于 2013-07-01T13:56:06.297 回答