по задумке, метод Last должен вернуть последнюю цифру. Например вводим 1030359 и метод Last возвращает 9, для дальнейшим манипуляций в методе Lama
using System;
namespace kdfvjfoid
{
class MainClass
{
public static int Last(int count)
{
string str = count.ToString();
int res = str[str.Length - 1];
return res;
}
public static string Lama(int count)
{
string rub1 = "рубль";
string rub2 = "рубля";
string rub3 = "рублей";
int res = Last(count);
if(res == 1) { return rub1; }
else if(res > 1 && res <5) { return rub2; }
else { return rub3; }
}
public static void Main(string[] args)
{
while (true)
{
int a = int.Parse(Console.ReadLine());
Console.WriteLine(Lama(a));
}
}
}
}