using System

using System;
public class Exercise25
{
public static void Main()
{
Console.WriteLine(“Odd numbers from 1 to 99. Prints one number per line.”);
for (int n = 1; n < (99 + 1); n++)
{
if (n % 2 != 0)
{
Console.WriteLine(n.ToString());
}
}

}
}
C#Copy
Sample Output:

Best services for writing your paper according to Trustpilot

Premium Partner
From $18.00 per page
4,8 / 5
4,80
Writers Experience
4,80
Delivery
4,90
Support
4,70
Price
Recommended Service
From $13.90 per page
4,6 / 5
4,70
Writers Experience
4,70
Delivery
4,60
Support
4,60
Price
From $20.00 per page
4,5 / 5
4,80
Writers Experience
4,50
Delivery
4,40
Support
4,10
Price
* All Partners were chosen among 50+ writing services by our Customer Satisfaction Team

Odd numbers from 1 to 99. Prints one number per line.
1
3
5
7
9
11
13
15
17
19
21
23
25
27
29
31
33
35
37
39
41
43
45
47
49
51
53
55
57
59
61
63
65
67
69
71
73
73
75
77
79
81
83
85
87
89
91
93
95
97
99
Flowchart:

Flowchart: C# Sharp Exercises – Print the odd numbers from 1 to 99
C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# program to find the longest word in a string.
Next: Write a C# program to compute the sum of the first 500 prime numbers.

What is the difficulty level of this exercise?

EASY MEDIUM HARD
?

This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License.
©w3resource.com 2011-2018
PrivacyAboutContactFeedbackAdvertise?