Программак на языке C#:
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;
namespace examplezn{ class Program { static void Main(string[] args) { double s = Int32.Parse(Console.ReadLine()); double need = 1.5*s; int i = 0; while (s<=need) { s = (s + s*0.03); i++;<br> }
Console.WriteLine("Через " + i + " лет"); Console.ReadKey(); } }}