answersLogoWhite

0


Best Answer

To create a flowchart to print odd numbers from 1 to 10, you would start with a terminal or start/end symbol. Then, you would use a process symbol to initialize a variable to 1. Next, you would use a decision symbol to check if the variable is less than or equal to 10. If it is, you would use another decision symbol to check if the variable is odd. If it is odd, you would use an output symbol to print the number. Finally, you would use a process symbol to increment the variable by 2 and loop back to the decision symbol to continue the process until the variable reaches 10.

User Avatar

ProfBot

4mo ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Draw flowchart to print odd numbers from 1 to 10?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Draw a flowchart to generate odd numbers between 100?

Draw a flowchart to generate odd numbers between 100?


Draw a flowchart to find sum of odd numbers from the first 10 natural number?

xsdsd


Algorithm and flowchart of odd numbers 1 to 100?

algorithim and flow chart of odd number 1 and 50


How do you find a number is odd or even numbers using flowchart?

Get number Find modulo 2 of number If the result is zero, number is even Else number is odd


Write a C Program to print sum of squares of odd numbers?

#include


Draw a flowchart of display odd numbers?

To create a flowchart of displaying odd numbers, you would start with a start/end symbol. Then, you would have a process symbol for initializing a variable to 1. Next, you would use a decision symbol to check if the variable is less than or equal to the desired maximum number. If it is, you would use another decision symbol to check if the variable is odd. If it is odd, you would have a process symbol to display the number. Finally, you would have arrows looping back to the decision symbols until the variable reaches the maximum number.


Write a java script program to print first ten odd natural numbers in C?

Q.1 Write a program to print first ten odd natural numbers. Q.2 Write a program to input a number. Print their table. Q.3 Write a function to print a factorial value.


How do you draw odd numbers between 0 to100 in flow charts?

a = 2n - 1


Draw a flowchart to find the even numbers from 1 to 100?

To create a flowchart to find even numbers from 1 to 100, you would start with an oval shape labeled "Start." Then, use a process symbol with a decision diamond to check if the number is divisible by 2. If it is, move to a rectangle labeled "Output" to display the even number. If not, return to the decision diamond. Continue this loop until you reach 100, then end with an oval labeled "End." This flowchart will systematically identify and output all even numbers between 1 and 100.


How do you draw a Flowchart to find whether the given number is odd or even using counter?

first we write start and then read number and after that check the number is totaly divide by 2 or not if number is totally divide by 2 then number is even else number is odd.


Could u draw me a flowchart for this C program question 1.sum of nos. from 1 to n Check the no. in odd or even?

1. Read in 'n'2. Output n*(n+1)/2> Check the no. in odd or even?Both possible, has no significance.


Make a flowchart to print the sum of the square of all odd numbers from 10 to50?

step 1 : n = 11, sum = 0 step 2 : then sum = sum + n2 step 3 : n = n + 2 step 4 : if n > 50, go to step 6 step 5 : loop to step 2 step 6 : print sum step 7 : end