
program that runs in turbo c only
(Use function) Write a function-oriented program that scans a number n and then output the sum of the powers from 1 to n. Thus, if the input is 3, the output should be 14. Because of this computation: 12+22+32= 1+4+9 =14
Sample input/output dialogue:
Enter number: 3
The result is: 1 + 4 + 9 = 14
modify my program:
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
#include <string.h>
int exponential(int x);
void main(){
int value;
system("cls");
printf("Enter number: "); scanf("%d",&value);
printf("%d",exponential(value));
}
int exponential(int a)
{
int i,total=0;
for(i=1;i<=a;i++)
{
if(i!=a)
{
printf("%d + ",i*i);
}
else if (i==a)
{
printf("%d = ",i*i);
}
total += i*i;
}
getch();
return total;
}

Trending nowThis is a popular solution!
Step by stepSolved in 4 steps with 2 images

- C++ Programming Request an integer n from the console.Write a function that accepts n as input and outputs the multiplicationtable of n from 1 to n to the console. Example Output: Enter an integer: 91 * 9 = 92 * 9 = 183 * 9 = 274 * 9 = 365 * 9 = 456 * 9 = 547 * 9 = 638 * 9 = 729 * 9 = 81arrow_forwardwrite this in c++ format function sequence(n){ var n = 10; // this is just for explanation you can take any value from user input var arr = [n]; //this is to store result //Continue to generate numbers in this way until N becomes equal to 1 while(n > 1){ //check if even if(n % 2 == 0){ //If N is an even number, then divide N by two to get a new value for N n = n / 2; } else{ //If N is an odd number, then multiply N by 3 and add 1 to get a new value for N. n = (n * 3) + 1; } arr.push(n); } Logger.log("sequesnce: "+ arr) Logger.log("Number of terms: "+arr.length);}arrow_forwardWrite a C++ function factorial that takes an integer, n, and returns the value of n factorial (a.k.a., n!): When n is positive, n! = 1 * 2 * 3 * ... * n. For example, 5! = 1 * 2 * 3 * 4 * 5 = 120. When n is zero, n! is defined to be 1. When n is negative, n! is undefined. You may assume that the parameter n will not be negative for this problem.arrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





