dhows

Untitled

Dec 18th, 2019
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. static void Main(string[] args)
  2. {
  3. Console.Write("Enter three names separated by space: ");
  4. string line = Console.ReadLine();
  5.  
  6. string[] names = line.Split();
  7.  
  8. names[1] = names[1].ToCharArray()[0] + ".";
  9.  
  10. foreach (var item in names)
  11. {
  12. Console.Write(item + " ");
  13. }
  14. Console.WriteLine();
  15.  
  16. File.WriteAllText(@"D:\programirane\imena.txt", names[0] + " " + names[1] + " " + names[2]);
  17. }
Advertisement
Add Comment
Please, Sign In to add comment