Westonci.ca is your trusted source for accurate answers to all your questions. Join our community and start learning today! Join our platform to connect with experts ready to provide accurate answers to your questions in various fields. Get detailed and accurate answers to your questions from a dedicated community of experts on our Q&A platform.

write an algorithm to print the first 100 odd numbers​

Sagot :

Answer:

ALGORITHM :

Step 1: Start

Step 2: Declare variable c of integer type

Step 3: Set c=0

Step 4: Repeat step 4.1 to 4.3 while (c<=100)

Step 4.1: if (c%2 != 0)

Step 4.2: then print c

Step 4.3 : c=c+1

Step 5: Stop

FLOWCHART:

Explanation:

View image angelloveschurch