Numbers.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace kursach3
  7. {
  8. internal class Numbers
  9. {
  10. public static string One()
  11. {
  12. return "1";
  13. }
  14. public static string Two()
  15. {
  16. return "2";
  17. }
  18. public static string Three()
  19. {
  20. return "3";
  21. }
  22. public static string Four()
  23. {
  24. return "4";
  25. }
  26. public static string Five()
  27. {
  28. return "5";
  29. }
  30. public static string Six()
  31. {
  32. return "6";
  33. }
  34. public static string Seven()
  35. {
  36. return "7";
  37. }
  38. public static string Eight()
  39. {
  40. return "8";
  41. }
  42. public static string Nine()
  43. {
  44. return "9";
  45. }
  46. public static string Zero()
  47. {
  48. return "0";
  49. }
  50. public static string Poin()
  51. {
  52. return ".";
  53. }
  54. }
  55. }