Sunday, May 24, 2009

Exercise

/* Custom Project and Libraries Copyright, 2006. Venkat, ISS */

using System;
using System.Collections.Generic;
using System.Text;
using ISS.RV.LIB;

namespace Prog00
{
class EX37
{
static void Main()
{
// Write the Main Program for EX37 here...


string s = "institute of system science";
string r = s.Substring(0, 1);
Console.WriteLine(r.ToUpper ());
//s.Substring(10, 1) = s.ToUpper();
//s.Substring(13, 1) = s.ToUpper();
//s.Substring(20, 1) = s.ToUpper();

Console.WriteLine(s);
#region /* Do not remove this or write codes after this */
ISSConsole.Pause();
#endregion
}
}
}

No comments:

Post a Comment