JulianJulianov

CharsToString

Jan 29th, 2020
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _09CharsToString
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. string output = "";
  10. for (int i = 1; i <= 3; i++)
  11. {
  12. var symbol = char.Parse(Console.ReadLine());
  13. output += symbol;
  14. }
  15. Console.WriteLine(output);
  16. }
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment