Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace _03._Practice_Chars_And_Strings
- {
- class Program
- {
- static void Main(string[] args)
- {
- string first = Console.ReadLine();
- char second = char.Parse(Console.ReadLine());
- char third = char.Parse(Console.ReadLine());
- char fourth = char.Parse(Console.ReadLine());
- string fifth = Console.ReadLine();
- Console.WriteLine($"{first}");
- Console.WriteLine($"{second}");
- Console.WriteLine($"{third}");
- Console.WriteLine($"{fourth}");
- Console.WriteLine($"{fifth}");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment