answersLogoWhite

0

cn = c0 *( 1 + i ) pow n

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

What button is exponents on a calculator?

On most calculators, the exponent button is denoted by a caret symbol (^) or a raised "x" symbol. To calculate an exponent, you typically input the base number, press the exponent button, and then enter the exponent value. For example, to calculate 2 raised to the power of 3, you would input "2 ^ 3" or "2 raised to the power of 3" on the calculator.


How do you write a program to input radius of a circle and calculate the area or circumferences of the cirlce?

In which computer language?


Sum three real numbers using for loop in c program?

take input n chodo


What is legal input?

In a computer program, a legal input is something that can be put into a program and it will work. An illegal input may crash the program.


How do you write a program to read set of numbers using by an array and display the ascending order of the given input numbers?

To write a C++ program to display the student details using class and array of object.


What is the program to find sum of n natural numbers in c plus plus?

Initialise an unsigned integer to zero. As each number is input, increment the running total accordingly. When all numbers are input, display the total.


Which is not a way to input data into a program?

without understanding the program giving a input


How do you calculate input work of an inclined plane?

how do I calculate the input work of an inclined plane


How do you calculate the average of 5 numbers?

1)start 2)input 5 numbers m,a,i,r,a 3)average=sum/5 4)printsum 5)stop


How does a 3-D CAD solid model program display the progression of work involved in creating a model?

If you input all of the correct numbers then the program will then analyze it and produce a 3-D graph of the date you've put it. You must keep accurate data over your work period to input into the program.


How do you create a program that can input 100 names using flowchart?

create a program that can input 100 names


what is the answer on how to make a program that will ask the user to enter four number and display the sum and average of that four number?

To create a program that asks the user to enter four numbers and then displays the sum and average, you can follow these steps: First, prompt the user to input four numbers and store them in variables. Next, calculate the sum by adding these numbers together. Finally, compute the average by dividing the sum by four, and then display both the sum and the average to the user. Here's a simple example in Python: numbers = [float(input("Enter number {}: ".format(i+1))) for i in range(4)] total = sum(numbers) average = total / 4 print("Sum:", total, "Average:", average)