Algorithms & FLowcharts
Tuesday, December 17, 2013
Draw a Flowchart to implement following pattern
›
* *** ***** ******* *********
Draw a Flowchart to implement following pattern
›
* ** *** **** *****
1 comment:
Write an algorithm to draw following pattern
›
****** ***** **** *** ** * Algorithm STEP 1. n ß 0,c ß 0,k ß 0,temp ß 0 STEP 2. print “Enter nu...
Write an algorithm to draw following pattern
›
* *** ***** ******* ********* Algorithm STEP 1. row ß 0,n ß 0,c ß 0,temp ß 0 STEP 2. print “Enter nu...
Write an algorithm to draw following pattern
›
* ** *** **** ***** Algorithm STEP 1. n ß 0,c ß 0,k ß 0 STEP 2. print “Enter number of rows” STEP 3. read n STEP 4. Repe...
Thursday, October 10, 2013
ALGORITHM TO FIND SUM OF THE SERIES 1*5 - 2*7 + 3*9 - 4*11 ... UPTO N TERMS
›
STEP 1. I <-- 1, J=5, Sum <-- 0, N <-- 0, Sign=1 STEP 2. Read N STEP 3. While (I <= N) Begi...
ALGORITHM TO FIND SUM OF THE SERIES 2+5+8+11...UPTO N TERMS
›
STEP 1. I <-- 0, J=2, Sum <-- 0, N <-- 0 STEP 2. Read N STEP 3. While (I <= N-1) Begin ...
›
Home
View web version