Advertisement
Guest User

4

a guest
Nov 25th, 2015
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.38 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApplication1
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string current = Console.ReadLine();
  10.             string upper = UCase(current);
  11.             Console.WriteLine(upper);
  12.         }
  13.  
  14.         static string UCase(string input)
  15.         {
  16.             return input.ToUpper();
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement