HTTP status codes
Log in om je oplossingen te testen.
// HTTP status codes program
using System;
class Submission
{
// -------------------------
// Subprograms
// -------------------------
static string HttpStatus(int status)
{
}
// -------------------------
// Main program
// -------------------------
public static void Main(string[] args)
{
Console.WriteLine("Enter the status code:");
int code = Convert.ToInt32(Console.ReadLine());
Console.WriteLine(HttpStatus(code));
}
}
Je kunt zo vaak indienen als je wenst. Er wordt enkel rekening gehouden met je laatst ingediende oplossing.
Log in om je oplossingen te testen.