Exemplo n.º 1
0
    static void Main()
    {
        string[] numbers = ReadInput();
        string[] sites   = ReadInput();

        Smarthphone phone = new Smarthphone(numbers, sites);

        phone.Call();
        phone.Browse();
    }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            List <string> numbersToCall = Console.ReadLine()
                                          .Split(new string[] { " " }, StringSplitOptions.RemoveEmptyEntries)
                                          .ToList();

            List <string> sitesToVisit = Console.ReadLine()
                                         .Split(new string[] { " " }, StringSplitOptions.RemoveEmptyEntries)
                                         .ToList();

            foreach (var number in numbersToCall)
            {
                Smarthphone smarthphone = new Smarthphone();
                smarthphone.Number = number;
                Console.WriteLine(smarthphone.Calling());
            }

            foreach (var website in sitesToVisit)
            {
                Smarthphone smarthphone = new Smarthphone();
                smarthphone.Website = website;
                Console.WriteLine(smarthphone.Brawsing());
            }
        }