16
1
// Directions: Intermediate #1-3
2
// 1) Add code to the Main method:
3
// a) Create a loop that will start with 25 cents and increase in value 1%.
4
// b) Output the value after 365 days.
5
// c) The answer should by $9.45
6
// 2) Submit your dotnetfiddle link in Blackboard.
7
using System;
8
9
public class Program
10
{
11
public static void Main()
12
{
13
14
Console.WriteLine("Hello World");
15
}
16
}
Cached Result