Temperature converter
Sign in to test your solution.
// Temperature converter program
using System;
class Submission
{
// -------------------------
// Subprograms
// -------------------------
static double c_to_f(int centigrade)
{
}
// -------------------------
// Main program
// -------------------------
public static void Main(string[] args)
{
int centigrade =
double fahrenheit =
Console.WriteLine(centigrade + " degrees Centigrade is " + fahrenheit + " degrees Fahrenheit.");
}
}
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.