Class1.cs 759 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Diagnostics;
  7. namespace ekzamen
  8. {
  9. public class Class1
  10. {
  11. public int tabica(int x,int z,int t= 1)
  12. {
  13. Console.WriteLine("введитее число на каторую умножит");
  14. x = Convert.ToInt32(Console.ReadLine());
  15. Console.WriteLine("до скольки");
  16. z = Convert.ToInt32(Console.ReadLine());
  17. for (int i = 1; i < x * z; i++)
  18. {
  19. i = x * t;
  20. t++;
  21. Console.Write("{0}, ", i);
  22. }
  23. return 0;
  24. }
  25. }
  26. }