TESTed: Oefeningen opstellen in C# #5793
Answered
by
bmesuere
bmesuere
asked this question in
Questions - Vragen
-
We kregen deze vraag via email:
using System;
public class Program
{
public static void Main(string[] args)
{
string userName = Console.ReadLine();
System.Console.WriteLine("Hello, " + userName + "!");
}
} |
Beta Was this translation helpful? Give feedback.
Answered by
bmesuere
Sep 14, 2024
Replies: 1 comment
-
De klasse waarin de oplossing komt wordt bepaald door de "namespace" in het testplan. Je moet dus ofwel de oplossing aanpassen als volgt: using System;
public class Submission
{
public static void Main(string[] args)
{
string userName = Console.ReadLine();
System.Console.WriteLine("Hello, " + userName + "!");
}
} Of je moet het testplan aanpassen als volgt: namespace: Program
tabs:
- tab: "Testen"
testcases:
- stdin: "Jan"
stdout: "Hallo, Jan!"
- stdin: "Piet"
stdout: "Hallo, Piet!"
- stdin: "5236-hallo!"
stdout: "Hallo, 5236-hallo!!"
- stdin: "'wereld'"
stdout: "Hallo, 'wereld'!"
- stdin: '"wereld"'
stdout: 'Hallo, "wereld"!'
- stdin: " "
stdout: "Hallo, !" |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
bmesuere
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
De klasse waarin de oplossing komt wordt bepaald door de "namespace" in het testplan.
In dit geval is er geen, dus wordt de standaardwaarde gebruikt, namelijk Submission.
Je moet dus ofwel de oplossing aanpassen als volgt:
Of je moet het testplan aanpassen als volgt: