17 lines
259 B
Text
17 lines
259 B
Text
|
|
using System;
|
||
|
|
|
||
|
|
namespace StringCase
|
||
|
|
{
|
||
|
|
class Program
|
||
|
|
{
|
||
|
|
public static void Main()
|
||
|
|
{
|
||
|
|
String input = scope .("alphaBETA");
|
||
|
|
input.ToUpper();
|
||
|
|
Console.WriteLine(input);
|
||
|
|
input.ToLower();
|
||
|
|
Console.WriteLine(input);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|