Computer Science, asked by mohammadabraar2, 1 year ago

Write an algorithm and flowchart for sine series?

Answers

Answered by Anonymous
9

Answer:

Useful Programs in C With Aim and Algorithm and Code - Download as Word Doc (.doc), ... To write a program to generate the fibbonaci series ...... Sapmple Algorithms & Flow Chart

Answered by Anonymous
5

Algorithm and flowchart for sine series:

  1. Start
  2. Initialize double sum=0,x,i,j,y,z=1,a,f=1,k=1;
  3. Enter x.
  4. read x.
  5. repeat steps 6 to 11 for(i=1 to i<=x)
  6. set j=z=1
  7. repeat steps 8 while(j<=i)
  8. set z=z*i;

        j=j+1;

    9.repeat steps 10 while(k<=i).

  • An algorithm uses definite procedure.
  • It is not dependent on any programming language, so it is easy to understand.
  • Every step in an algorithm has its own logical sequence so it is easy debug.
Similar questions