Program Toggle Case Kalimat Dengan Manipulasi String C# Posted by Unknown on January 14, 2015 Get link Facebook X Pinterest Email Other Apps Dengan keterangan program : - Input berupa : Kalimat. - Toggle Case adalah mengubah huruf kecil menjadi huruf kapital, dan sebaliknya. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MODUL6_4 { class Program { static void Main(string[] args) { string kalimat; Console.Write("Input kalimat = "); kalimat = Console.ReadLine(); Console.WriteLine(); Console.Write("Toggle case= "); for (int i = 0; i < kalimat.Length; i++) { if(char.IsLower(kalimat[i])) { Console.Write(char.ToUpper(kalimat[i])); } else { Console.Write(char.ToLower(kalimat[i])); } } Console.ReadKey(); } } } Comments
Comments
Post a Comment