我要做一个小程序,提示用户测试标记,判断用户是通过还是失败。低于 50 的测试分数为不及格。
这是我的代码。它给了我 2 个错误(其中有星号。)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Prac6Question2
{
class Program
{
static void Main(string[] args)
{
double testMark;
string result;
testMark = GetTestMark(*testMark*);
result = DetermineResult(testMark, *result*);
Display(testMark, result);
}
static double GetTestMark(double testMark)
{
Console.WriteLine("Your test result: ");
testMark = double.Parse(Console.ReadLine());
return testMark;
}
static string DetermineResult(double testMark, string result)
{
if (testMark < 50)
result = "Fail";
else
result = "Pass";
return result;
}
static void Display(double testMark, string result)
{
Console.WriteLine("Your test result: {0}", result);
Console.ReadLine();
}
}
}
请帮忙。谢谢。