// Directions: Intermediate #1-3
// 1) Add code to the Main method:
// a) Create a loop that will start with 25 cents and increase in value 1%.
// b) Output the value after 365 days.
// 2) Submit your dotnetfiddle link in Blackboard.
using System;
public class Program
{
public static void Main()
double principal = .25;
double rate = .01;
double balance;
double days = 365;
for(int i = 1; i <= days; i++)
balance = principal * Math.Pow((1 + rate), (days));
Console.WriteLine(balance.ToString("C"));
// This all seems wrong, but I give up.
}