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