/* Custom Project and Libraries Copyright, 2006. Venkat, ISS */
using System;
using System.Collections.Generic;
using System.Text;
using ISS.RV.LIB;
namespace Prog00
{
class Progo2
{
static void Main()
{
// Write the Main Program for Progo2 here...
int C;
double F;
Console.WriteLine("Enter Centigrade:");
ISSConsole.ReadInt(C);
F = 1.8 * C + 32;
Console.WriteLine(F);
#region /* Do not remove this or write codes after this */
ISSConsole.Pause();
#endregion
}
}
}
No comments:
Post a Comment