write a function – oriented program that calculates the sum
of the squares from 1 to n. thus, if the input is 3, the
output is 14
Answers were Sorted based on User's Feedback
Answer / shams
#include<stdio.h>
int main()
{
int n,i,sum=0;
printf("Enter a number");
scanf("%d",&n);
for(i=1;i<=n;i++)
sum=sum+(i*i);
printf("Output:- %d",sum);
return 0;
}
| Is This Answer Correct ? | 19 Yes | 12 No |
Answer / hedto
int main()
{
int n,i,sum=0;
printf("Enter a number");
scanf("%d",&n);
for(i=1;i<=n;i++)
sum=sum+(i*i);
printf("Output:- %d",sum);
return 0;
}
int sum(int x)
{
int sum=0;
while(x>0)
{
sum+=x*x;
x--;
}
return sum;
}
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / sreejesh1987
void main()
{
int sum(int d);int n;
clrscr();
printf("Enter the no: ");
scanf("%d",&n);
printf("\nSum of squares upto %d is %d",n,sum(n));
getch();
}
int sum(int x)
{
int sum=0;
while(x>0)
{
sum+=x*x;
x--;
}
return sum;
}
| Is This Answer Correct ? | 5 Yes | 10 No |
develop a program to calculate and print body mass index for 200 employees
0 Answers Jomo Kenyatta University,
write a program to sort 'n' elemnts using bubble sort
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
can we declare an object of a class in another class?(assume both class as public classes)
Code for Two Classes for Doing Gzip in Memory?
Where now stands that small knot of villages known as the Endians, a mighty forest once stood. Indeed, legand has it that you could have stoodon the edge of the wood and seen it stretch out for miles, were it not for the trees getting in the way. In one section of the forest, the trees stood in a row and were of hight from 1 to n, each hight occurring once and once only. A tree was only visible if there were no higher trees before it in the row. For example, if the heights were 324165, the only visible trees would have been those of height 3,4 & 6. Write a Program that takes an array of integers representing the heights of the trees in the row as input and prints the list of the visible trees.
write a program that can LOCATE and INSERT elements in array using c++ programming languages.
Given 1 to n random number, find top 10 maximum numbers and explain the time complexity of the algorithm.
program to find the magic square using array
How to swap two ASCII numbers?
readers and writers problem
write a program using virtual function to find the transposing of a square matrix?