我不确定为什么我会在没有if'错误。根据这本书,我的格式是正确的。
if(donationType>2)
{
if(donationType == CLOTHING_CODE)
{
volunteer = CLOTHING_PRICER;
message = "a clothing donation";
}
else
{
volunteer = OTHER_PRICER;
message = "a non-clothing donation";
}
else
message = "This is an invalid donation type";
message = "The volunteer who will price this item is invalid";
}
答案 0 :(得分:2)
在else
之后你缺少一个大括号z-index
答案 1 :(得分:0)
您错过了第一个else
的右大括号}
,因此您打算结束第一个}
的{{1}}实际上结束if
,所以你连续2 else
,因此错误。
为最后一个else
提供缺少的大括号}
(以及一个大括号{
。)
答案 2 :(得分:0)
您错过了{r results='asis',echo=FALSE}
require(googleVis)
op<-options(gvis.plot.tag="chart")
M=gvisMotionChart(df, idvar = "Zone", timevar = "Date")
plot(M)
:
}
答案 3 :(得分:0)
从W3School看一下,你错过了一个支架
<div class="rating">
<label class="rating">1
<input name="rating" type="radio" class="ratingbtn" value="1" <?php if (isset($rating) && $rating=="1") echo "checked";?>>
2 </label>
<input type="radio" name="rating" <?php if (isset($rating) && $rating=="2") echo "checked";?> value="2">
3
<input type="radio" name="rating" <?php if (isset($rating) && $rating=="3") echo "checked";?> value="3">
<label> 4</label>
<input type="radio" name="rating" <?php if (isset($rating) && $rating=="4") echo "checked";?> value="4">
<label>5</label>
<input type="radio" name="rating" <?php if (isset($rating) && $rating=="5") echo "checked";?> value="5">
</div>