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
What are formatting flags in ios class?
What is the outcome of cout< a) 16 b) 17 c) 16.5
Do the parentheses after the type name make a difference with new?
What is c++ library?
What does 7/9*9 equal ? a) 1 b) 0.08642 c) 0
Explain how overloading takes place in c++?
When do we run a shell in the unix system?
What is the type of this pointer in c++?
What is the use of cmath in c++?
Mention the ways in which parameterized can be invoked.
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
What is the full form of ios?
What is the disadvantage of using a macro?
Should I learn c++ c?
What are the unique features of C++.