answersLogoWhite

0

What is the sum for N plus N?

Updated: 9/21/2023
User Avatar

Draco47

Lvl 1
12y ago

Best Answer

N+n=0

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the sum for N plus N?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Find the sum of 1 plus 2 plus 3 plus . plus n nos using c program?

if (n%2==0) sum=n/2*(n+1); else sum=(n+1)/2*n;


What is the c plus plus program for printing sum to n natural numbers?

main() { int i, n, sum=0; cout<<"Enter the limit"; cin>>n; for(i=0;i<=n;i++) sum=sum+i; cout<<"sum of "<<n<<" natural numbers ="<<sum; getch(); }


1 plus 3 plus 5 plus 7n how will you do this program?

Print "Type the upper limit (n) ?" Input n K = -1 WHILE K < = n K = K + 2 Sum = Sum + K WEND Print "The sum of all odd numbers up to "; n; "is "; Sum


How do you find the C programming of the sum of the series 5 plus 55 plus 555 plus . plus n terms?

Find the Sum to n terms of the series 5 5+55+555+ +n Terms


3 plus 7 is an a------n sum?

3 + 7 is an ADDITION sum


What is the sum of 1 plus 2 plus 3 plus 4 plus 5. plus n?

(n2 + n)/2 1+2+3+4+5+n= 15+n


How do you find sum of even numbers in c plus plus?

That is an unsolvable problem, because there are an infinite number of even numbers. However, with limits, you could say... int NMax = ...; int Sum = 0; for (N=2; N<=NMax N+=2) Sum += N;


What is code of 1-2 plus 3-4 plus 5-6 plus ...n in c plus plus?

Did you mean 1-2+3-4+5-6....till n ?? If yes, then here it is: #include<iostream.h> void main() { int n,sum=0,check=1; cout<<"Enter n "; cin>>n; for(int i=1;i<=n;i++) { sum+=(check*i); check*=-1; } cout<<"The result of series is: "<<sum; }


What is the sum of successor of n and predecessor of n is?

Successor of n=n+1 Predecessor of n=n-1 Sum=[n+1]+[n-1] Plus 1 plus minus 1= [1]+[-1]=0 [n][n] =2n Hope this helps


How do you write sum of twice a number plus seven?

2x+7=n


The emmiter current of an n-p-n transistor is equal to?

The sum of (base current) plus (collector current).


What is the formula for 1 plus 2 plus 4 plus 8 30 times?

The sum of 2n, for n= 0 to 29.