Https://bricksafe.com/pages/sfdhfhf/live-handball--czech-republic-vs-chile-live-s-tream-2021-world-handball-championship-game https://bricksafe.com/pages/sfdhfhf/live-handball--south-korea-vs-russia-live-s-tream-2021-world-handball-championship-game
https://bricksafe.com/pages/sfdhfhf/live-handball--usa-vs-france-live-s-tream-2021-world-handball-championship-game
https://bricksafe.com/pages/sfdhfhf/live-handball--portugal-vs-algeria-live-s-tream-2021-world-handball-championship-game
https://bricksafe.com/pages/sfdhfhf/live-handball--slovenia-vs-belarus-live-s-tream-2021-world-handball-championship-game
https://bricksafe.com/pages/sfdhfhf/live-handball--egypt-vs-sweden-live-s-tream-2021-world-handball-championship-game
https://bricksafe.com/pages/sfdhfhf/live-handball--iceland-vs-morocco-live-s-tream-2021-world-handball-championship-game
https://bricksafe.com/pages/sfdhfhf/live-handball--norway-vs-austria-live-s-tream-2021-world-handball-championship-game
только в том месте где ф-цию вызываешь - znanija(a,b), просто ставишь другие числа, и тогда возвратится другое значение. Розбирайся вобщем)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(znanija(6, 6));
Console.ReadKey();
}
static char znanija(int a, int b)
{
if (a > b)
{
return '>';
}
else if (a < b)
{
return '<';
}
else
{
return '=';
}
}
}
}