1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace kursach3
- {
- internal class Numbers
- {
- public static string One()
- {
- return "1";
- }
- public static string Two()
- {
- return "2";
- }
- public static string Three()
- {
- return "3";
- }
- public static string Four()
- {
- return "4";
- }
- public static string Five()
- {
- return "5";
- }
- public static string Six()
- {
- return "6";
- }
- public static string Seven()
- {
- return "7";
- }
- public static string Eight()
- {
- return "8";
- }
- public static string Nine()
- {
- return "9";
- }
- public static string Zero()
- {
- return "0";
- }
- public static string Poin()
- {
- return ".";
- }
- }
- }
|