Algorithms
- A sequential solution of any program that written in human language,called algorithm.
- Algorithm is first step of the solution process, after the analysis of problem, programmer write the algorithm of that problem.
- Example of Algorithms:
Q. Write a algorithem to find out number is odd or even?
Ans.
step 1 : start
step 2 : input number
step 3 : rem=number mod 2
step 4 : if rem=0 then
print "number even"
else
print "number odd"
endif
step 5 : stop
Flowchart
1. Graphical representation of any program is called flowchart.
2. There are some standard graphics that are used in flowchart as following:
Figure: Start/Stop terminal box |
Figure: Input/Output box |
Figure: Process/Instruction box |
Figure: Lines or Arrows |
Figure: Decision box |
Figure: Connector box |
Figure: Comment box |
Figure: Preparation box |
Figure: Separate box |
Q. Make a flowchart to input temperature, if temperature is less than 32 then print "below freezing" otherwise print "above freezing"?
Ans.
Figure: Flowchart example of C program |
Related programs:
- Flowchart for search prime number
- Factorial C program, Algorithm and Flowchart
- Flowchart for finding Armstrong number
- Rules for constructing an Algorithm
- if, if...else, nested if...else, if...else if - statement and flowchart
- Algorithm for rectangle number pattern
- Algorithm for star pyramid
- Draw a flowchart, and write algorithm and C program for calculate sum of square
ne mama
ReplyDeleteDraw a flowchart diagram to find the square of a number
ReplyDeleteYour required flowchart for square of a number at:
Deletehttp://cprogrammingcodes.blogspot.in/2012/10/square-number-program-and-flowchart.html
flowchart for finding out the armstrong number.....please
ReplyDelete@Darshan Chavre,
DeleteYour required flowchart for finding Armstrong number at:
http://www.cprogrammingcodes.blogspot.in/2012/10/flowchart-for-finding-armstrong-number.html
Write a C program to accept a number from user and print the sum of square. Also draw the flowchart of program.... please..
ReplyDeleteand also the algorithm...
Delete@Meray Ney
DeleteYour required sum of square C program, algorithm and flowchart at:
http://cprogrammingcodes.blogspot.in/2012/10/sum-of-square-program-algorithm-and.html
Algorithm step for pyramid of numbers
ReplyDeleteAlgorithm steps and flowchart for the stars given.
ReplyDelete*
* *
* * *
* * * *
* * * * *
Algorithm and program for above star pyramid at:
Deletehttp://cprogrammingcodes.blogspot.in/2012/10/algorithm-for-star-pyramid.html
I want to write an algorithm for a c program of structures and its flowchart. How can de they done?
ReplyDeleteques===> draw a flowchart which would display the summation of the following series up to nth terms, n being accepted by the user.
ReplyDelete2+5+6+7+10+9+........nth term
flowchart for sum of 3 digits of 3 digit number
ReplyDeleteThis comment has been removed by the author.
ReplyDeletewrite a c program that takes electricity unit as input and print the total amount of bill..bill criteria 1-100 and price is 5.801,bill 101-200 and price 8.923,bill 201 and price 11.293,bill 201-300 and price 11.293,bill above 300 and price 74.561....please
ReplyDeleteeg of flowchart for array, string and recursive functions...
ReplyDeleteRead the book Lte Us C of yashwant kanetkhar.
DeleteYou will get your answer.
Ok........
write an algorithm for the sum of individual digits of a positive integer and draw aflowchart
ReplyDeleteme too, i need an example of .. a flowchart that has a string variable ..
ReplyDeletethanks :)
show the flowchart and algorithm of finding the upper triangle of metrics
ReplyDeletecan u tell me about how to find the biggest number among the 2 numbers in a flowchart and algorithm
ReplyDeletewrite algorithm and flowchart to generate all prime no.s between 1 and n where n is supplied by users
ReplyDeleteplease visit this site and get more information about TECHNOLOGY
ReplyDeletewww.lbefit.blogspot.com
algorithm, programme n flow chart for finding out no. of vowels in a string.
ReplyDeletealgorithm programme n flow chart for finding out no. of vowels in a string.
ReplyDeleteflowchart to print student grade using structure
ReplyDeleteflowchart to print the student grade using structure...........pls
ReplyDeleteHOW CAN I WRITE FACTORIAL OF A NUMBER IN THIS FORM
ReplyDelete5!=5X4X3X2X1=120 ?
printf("5!=5x4x3x2x1=")
Deletefact=1;
Deletefor(i=1;i<=n;i++)
{
result=fact*i;
}
printf("%d",sum); //Hope you got
fact=1;
Deletefor(i=n;i>=1;i--)
{
fact=fact*i;
}
printf("%d",fact);
void main()
Delete{
int n,fact=1,i;
scanf("%d",&n);
for(i=n;i>=1;i--)
{
fact=fact*i;
}
printf("Fact :%d",fact);
getch();
}
Where can I find flowchart for the program that involves swapping two no.s and displaying them on screen???
ReplyDeleteASAP Please!!!
Where can I find flowchart for the program that involves swapping two no.s and then displaying them on screen???
ReplyDeleteASAP Please!!!
draw the flow chart of the program that input 4 digit number and show its output as reverse for example 1234 shows 4321
ReplyDelete654
DeleteHello sir,
ReplyDeleteCan you help me in making a flow chart and algorithm of a program to find "Hartmann's Constant" using arc spectrum of brass and copper.Please.... this is for my project , for Bsc physics.
Hello , where can i get the algorithms for :-
ReplyDeleteSparse matrix
Insert and delete an element in an array , Stack , queue , Linked list
Bubble sort
Selection sort
Binary tree
can anyone help me to write an algorithm for permutations of a given set of series
ReplyDeleteflowcharts:
ReplyDeleteinputs: month(in numbers) and day (birthday)
output will the zodiac sign!!
help please. thanks
CFan anyone make a algorithm to determine samllest number among the five...??
ReplyDeletepls help me to find the algorithm of lcm and hcf
ReplyDeleteplz make a algorithm to find first five even numbers
ReplyDeleteflowchart for palindrome checking
ReplyDeleteplz tell me sir k 3 digits main sy greater digits find krny k liy flowchart kesy bnny ga.plz flowchart bna k send kr dain plz
ReplyDeleteplz tell me
ReplyDeleteshow me flowchart sir
ReplyDeletepage k starting main diagram hain na ...
Delete.Write a c++ program to create a class reverse that will reverse a 4 digit number.and also write the concept,algorithm and flowchart.. ?plzz give me
ReplyDeletecan u plz tell me th logic and the flowchart to find the value that occurs atleast once in two matrices and printf its position in both matrices
ReplyDeletecan u plz tell me the flow chart and the logic to find the value that occurs atleast once in two matrices and print its position in both matrices.
ReplyDeletepls..help me finding a sample problem of flowchart that has already the solution of flowchart either sequential,repetition and conditional
ReplyDeletewhy are we first use flowchart?
ReplyDeleteIt helps to write code and to know the flow of codes too
DeletePrint Algoritm to find numbers(between 1 to 100) those r divisible bu 2 & not divisible by 3 &5.......
ReplyDeleteplease help me with this...write Algorithm to find the average of a set of five numbers
ReplyDeleteflowchart for simple structure in c,employee details using structure in c, student details using union in c
ReplyDeleteflowchart for simple structure in c,employee details using structure in c, student details using union in c
ReplyDeleteplease
ReplyDeletealgorithm for counting binary n.o and checkinging odd r even by n.o of 1s and 0s
ReplyDeleteThis comment has been removed by the author.
ReplyDeletedefination of comment
ReplyDeletecan help for this program? it finds the sum of a series for a given value of X
ReplyDeletesum= 1- X^2/2! + X^4/4! - X^6/6! + X^8/8! - X^10/10!
sir...i want a program to print
ReplyDelete*******
**********
************
**************
#include
ReplyDelete#include
#include
void main()
{
int n=8,i,t=4,j;
clrscr();
for(i=0;i<t;i++)
{
for(j=0;j<n;j++)
{
printf("*");
}
printf("\n");
n=n+2;
}
getch();
}
flowchart for a scientific calculator
ReplyDeleteflowchart and algorithm to reverse a number and check if it is a palindrome
ReplyDeletewhere to write the following steps can you please help me sir
ReplyDeletealgorithm for checking whether number is a armstrong number or not
ReplyDeleteplease I want Answers for this question:
ReplyDeletewrite an algorithm and draw a flowchart to:
1- find largest between two numers.
2- determine if a number is positive or nevative.
3- determine if a number is odd or even.
I need Flowcharts and algorithms for all these
ReplyDelete1. Write a program to find simple & compound Interest.
2. Write a program to find the sum & average of three numbers.
3. Write a program to voter is eligible or not.
4. Write a program to find largest of three numbers.
5. Write a program to whether a given number is prime or not.
6. Write a program to find the roots of the quadratic equation using switch
statement.
7. Write a program to perform arithmetic operations of the two numbers using
switch statement.
8. Write a program to find the sum of the individual digit until a single digit.
9. Write a program to find frequency of presence of a digit in a given number.
10. Write a program to find count the number of vowels and consonants in a given
string.
11.Write a program to find the series 1+x+x2+x3+……+xn .
12.Write a program to find the series 1+1/3!+1/5!+……+1/n!.
13. Write a program to generate & print the Fibonacci series.
14. Write a program to find the exponent series.
15.Write a program to find the sine series.
16. Write a program to find the cosine series
17. Write a program to find a string whether it is palindrome or
not
18. Write a program to find a character is alphabetic or numeric or
special character.
19. Write a program to sort the number in ascending order
20. Write a program to find second largest & second smallest of
given number.
21. Write a program to find the sum & subtract of two given matrix.
22. Write a program to find the multiplication of two matrix.
23. Write a program to find the trace of a matrix.
24. Write a program to find the norm of a matrix.
25. Write a program to find sum of each row & sum of each
column of the given matrix.
please i want the answer.
ReplyDeletean old music cost Rs.20 and new music video cost Rs. 50. write the algorithm to purchase 5 numbers of old music video and 7 numbers of new music video through online purchase
i need algorithm and flowchart
ReplyDeleteWrite a program to find a string whether it is palindrome or
not
Draw the flowchart and write c program to display Fibonacci series numbers
ReplyDeletealgorithm for call by value
ReplyDeletealgorithm to display the numbers in the form as below by accepting a number 'n' from the user(here 'n' is ending digit up till which the series is to be printed
ReplyDeleteeg:if 'n'=8
1
12
123
1234
12345
123456
1234567
12345678
flowchart for maximum number using function
ReplyDeleteflowchart for decimalnumber to binary
ReplyDeleteflow chart for find maximum element in an array using pointer
ReplyDeleteCan anyone please help me to draw Flowchart and Develop Algorithm of:-
ReplyDelete1) Find max. from 2 number
2) Find max. from 3 number
3) Min. value from 10 number
4) Fibonaci series
any one please?
#include
ReplyDeleteint main()
{
int n, reverse = 0;
printf("Enter a number to reverse\n");
scanf("%d", &n);
while (n != 0)
{
reverse = reverse * 10;
reverse = reverse + n%10;
n = n/10;
}
printf("Reverse of entered number is = %d\n", reverse);
return 0;
}
Algorithm and flow chart for this programme
Plz give me algorithms and flowchart of following:
ReplyDelete1.find area and perimwter of rectangle
2.find even and odd numbers from given two numbers
3.program to accept three values for a, b , c from user and to show largest no. Among them- nested if statment
4.program to except mrks of maths, physics, chemistry ,computer science and english calculate total and percentage of students getting grade - else if ladder
Algorithm and flowchart for the conversion of decimal to octal number using functions
ReplyDeleteFlow chat andAlogorithm for phone book???
ReplyDeleteCreate a flow chart that finds the largest square number less than 40.
ReplyDeletewrite a c program to get marks memo according to users input of marks according to JNTU ananthapur
ReplyDeleteDraw a flowchart to print frequency of a digit in a number.
ReplyDeleteRead a number and digit for frequency from user.
Can u find a flowchart and algorithm for pascals triangle
ReplyDeletecan anyone help me with this problem :present the algorithm and flowchart of this - arrange sequentially and in ascending order of scattered numbers
ReplyDeletewrite an algorithm and program to find out the square of n prime numbers
ReplyDeletewrite an algorithm that read any 20 integer value and print the total and also draw its flowchart?
ReplyDeleteA program for calculating sum of prime numbers and as well as sum of natural numbers?
ReplyDeleteWrite the algorithms and draw the flow charts for the following problems on
ReplyDeleteassignment sheets:
1. To find the compound interest.
2. To find the factorial of a given number.
3. To print odd numbers between 51 and 100.
4. To check whether a number entered by the user in Prime or not.
5. To check whether a number entered by the user in Palindrome or not.
6. To check whether a number entered by the user in Armstrong or not.
7. To generate sum of the following series up to nth term entered by the user :
1 + 2 + 3 + 4…………n
8. To generate sum of the following series up to nth term entered by the user :
1 + (1+2) + (1+2+3) + (1+2+3+4) + …….(1+2+3+….n)
9. To print the square series up to nth term entered by the user :
1 4 9 16 25 ………
10. To print the square series up to nth term entered by the user :
1! + 2! + 3! + 4! + ………n!
Write algorithm to this problem: Ramshewak goes to market for buying some fruits and vegetables. He is having a currency of Rs 500 with him for marketing. From a shop he purchases 2.0 kg Apple priced Rs. 50.0 per kg, 1.5 kg Mango priced Rs.35.0 per kg, 2.5 kg Potato priced Rs.10.0 per kg, and 1.0 kg Tomato priced Rs.15 per kg. He gives the currency of Rs. 500 to the shopkeeper. Find out the amount shopkeeper will return to Ramshewak
ReplyDeleteplzz give the ans
I'm the fresher I want to know the basics of algorithm and flowchart .....
ReplyDeleteKindly reply fast
I'm the fresher I want to know the basics of algorithm and flowchart .....
ReplyDeleteKindly reply fast
Hey
ReplyDeleteWrite a c program to sort n elements using visual bubble sort. Please reply faster.
ReplyDeleteWrite a c program to sort n elements using visual/graphics bubble sort.
ReplyDeleteWrite a c program to sort n elements using visual/graphics bubble sort.
ReplyDeleteWrite a c program to sort n elements using visual/graphics bubble sort.
ReplyDeletewrite an algorithm to find the given digits are binary numbers or not.?
ReplyDeletewrite an alogarithm for the following programme
ReplyDelete#include
void main()
{
int a=4,b=7,x;
x=(a+5)>b?a:b-3;
printf("%d%d%d",a,b,x)
}
Algorithm to draw multiple boxes using function in c programming
ReplyDeleteAlgorithm and flow chart to c-program implement sine wave using graphics ?
ReplyDeleteflowchart of sum of two matrices
ReplyDelete