Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace _2._3
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.Write("Введите число Y = ");
- int y = int.Parse(Console.ReadLine());
- y /= 2;
- string xStr = y.ToString();
- char xChr = xStr[xStr.Length-1];
- xStr = xStr.Remove(xStr.Length - 1);
- Console.Write("Число X = " + xChr + xStr);
- Console.ReadKey();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement