Exercise
Odd Numbers Descending
Objetive
Create a C# program to display the odd numbers from 15 to 7 (downwards) on the screen using "while".
Example Code
using System;
public class exercise24
{
public static void Main()
{
int n = 15;
while (n >= 7)
{
Console.WriteLine(n);
n -= 2;
}
}
}