请帮助!! 我不知道发生了什么,这段愚蠢的代码无法正常工作。 请帮助我,因为我是C#的新手,而我只是想尝试一些代码来练习。 我写了一个“ If语句”,通常它应与{}一起使用,但不能。 还有其他一些问题,这是代码上方的输出:
<script type="text/javascript">
var htmlSum = 0;
function fetchData() {
htmlSum = //How to I scrape the 'sum' variable sent into the page?????
}
window.onload = fetchData;
</script>
//这是代码
docker update --restart=always <container>
答案 0 :(得分:1)
您缺少一个封闭的主题:
if(String.Contains("y")) //<---missing extra )
您有一个额外的括号:
int question1;
{ //<----what's that doing there?
Console.WriteLine("LOOOOOL");
重新格式化的代码应如下所示:
using System;
public class LOOOOOL
{
public static void Main(String [] args)
{
int enterInfo;
int question1;
Console.WriteLine("LOOOOOL");
enterInfo = Console.ReadLine();
Console.WriteLine(enterInfo);
question1 = Console.WriteLine("Is that what you wrote ???");
if(String.Contains("y"))
{
Console.WriteLine("So that's cool, right ???");
}
else
{
Console.WriteLine("Can you re-write it please ???");
question1 = Console.ReadLine();
Console.WriteLine(question1);
}
}
}
此外,您的变量为int
...它将从不包含“ y”。...可能要将这两个变量更改为字符串
也... String.Contains()
...您要检查哪个字符串?您可以研究的东西:)
也许enterInfo.Contains("y")
可能对您有用。