Write a program to calculate the following
i want a c++program for this condition
1+4+9+16+….+100

Like this (1^2+2^2)

Hint use function pow(a,b)

Answer Posted / ashok ak

#include<iostream>
using namespace std;
int main()
{
int a=0,n;
cout<<"Enter the Number ";
cin>>n;
for(int i=1;i<=n;i++)
a+=pow(i,2);
cout<<"The Sum of Total is "<<a;
return 0;
}

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are formatting flags in ios class?

812


What is the outcome of cout< a) 16 b) 17 c) 16.5

762


Do the parentheses after the type name make a difference with new?

838


What is c++ library?

782


What does 7/9*9 equal ? a) 1 b) 0.08642 c) 0

742


Explain how overloading takes place in c++?

761


When do we run a shell in the unix system?

795


What is the type of this pointer in c++?

811


What is the use of cmath in c++?

775


Mention the ways in which parameterized can be invoked.

716


write asingle linked list which read from two list & the do the following 1 sort the prime & nonprime num (prime should be less tn nonprime) 2 each node has a prime num followd by nonprime 3 add a new node into its sutable plce 4 erase the most three duplicated non prime num 5 find the least duplicated prime num

2390


What is the full form of ios?

741


What is the disadvantage of using a macro?

788


Should I learn c++ c?

795


What are the unique features of C++.

766