Find the simple interest and compound interest write algorithm and flowchart
Answers
Answered by
3
Answer:
READ: amount, rate, time SI= ((amount*rate*time)/100) START PRINT SI STOP. ... C program for number triangle pyramid START READ number as num i=1 Is i<=num sum=sum+(i*i) i=i+1 PRINT sum STOP. ... C Program to Find Fibonacci series START READ: Number as num rem = num % 10 rev = rev * 10
Similar questions