Advertisement
Guest User

Untitled

a guest
Jul 20th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. //Rextester.Program.Main is the entry point for your code. Don't change it.
  2. //Compiler version 4.0.30319.17929 for Microsoft (R) .NET Framework 4.5
  3.  
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text.RegularExpressions;
  8.  
  9. namespace Rextester
  10. {
  11. public class Program
  12. {
  13. public static void Main(string[] args)
  14. {
  15.  
  16. string[] tabelka = new string[2];
  17.  
  18. tabelka[0] = "I'm exhausted. I [..........] (work) very hard today." + "\n" + "\na: have worked\nb: have been working";
  19. tabelka[1] = "mmm";
  20. int i = 0;
  21.  
  22. foreach (var pytanie in tabelka)
  23. {
  24.  
  25. Console.WriteLine(tabelka[i]);
  26. i++;
  27. }
  28.  
  29. }
  30. }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement