- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to generate the first 100 Odd Numbers using C#?
To generate first 100 odd numbers, set a for loop from 1 to 100.
for(val = 1; val <l= 100; val++) {}
Under the loop, set the condition for odd numbers i.e. if the mod 2 of a number is not equal to 0, then it is an odd number.
for(val = 1; val <= 100; val++) { if(val%2 != 0) { Console.WriteLine(val); } }
The following is the complete example −
Example
using System; class Program { static void Main() { int val; for(val = 1; val <= 100; val++) { if(val%2 != 0) { Console.WriteLine(val); } } } }
Advertisements