515818
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication11
{
class Program
{
static void Main(string[] args)
{
int year = 2022;
double money = 10;
double grow_rate = 0.046;
while( money<15 )
{
money=
year++;
}
Console.Write("小明存款到15万的年份是:{0}年。",year);
Console.ReadKey();
}
}
}