出于某种原因,我的"如果"表达式在Xcode中不起作用。它给出了一个解析问题"用if表达式。有什么建议?错误代码是:"预期的不合格ID"。我正在使用xcode。请参阅以下内容:
if (surfaceArea > 750)
{
totalCost t=50;
}
提前致谢,
答案 0 :(得分:5)
if (surfaceArea > 750) //adding 50 dollars to cost if product is
//over 750 sq. inches
{
totalCost t+=50;
}
制作评论专栏//。 希望你能理解。
要编写多行注释,请使用/ * .... * /
答案 1 :(得分:1)
只需从代码中删除over 750 sq. inches
即可。并使用/* */
进行多行注释。