Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace _09CharsToString
- {
- class Program
- {
- static void Main(string[] args)
- {
- string output = "";
- for (int i = 1; i <= 3; i++)
- {
- var symbol = char.Parse(Console.ReadLine());
- output += symbol;
- }
- Console.WriteLine(output);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment