コード例 #1
0
ファイル: Segmentolek.cs プロジェクト: jotem/SPOJ
        static void Main(string[] args)
        {
            String numberOfInputs =  Console.ReadLine();
            String inputValues;
            int loopCounter = 0;

            Segmentolek testSegmentolek = new Segmentolek();

            while (loopCounter != int.Parse(numberOfInputs))
            {
                inputValues = Console.ReadLine();
                int segmentolekAge = testSegmentolek.CalculateAge(inputValues);
                Console.WriteLine(segmentolekAge);
                loopCounter++;
            }
        }
コード例 #2
0
ファイル: Segmentolek.cs プロジェクト: jmacioszek/SPOJ
        static void Main(string[] args)
        {
            String numberOfInputs = Console.ReadLine();
            String inputValues;
            int    loopCounter = 0;

            Segmentolek testSegmentolek = new Segmentolek();

            while (loopCounter != int.Parse(numberOfInputs))
            {
                inputValues = Console.ReadLine();
                int segmentolekAge = testSegmentolek.CalculateAge(inputValues);
                Console.WriteLine(segmentolekAge);
                loopCounter++;
            }
        }