answersLogoWhite

0

N+5=n+5

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

How do you write five times the sum of 9 and a number?

5+9(n)


What is five times the sum of 6 and some number?

5 x (6 + n)


What is the sum of five and twice a number?

Let 'n' represent any number, and 'S' represent sum. S = 5 + 2n


What is twice the sum of seven and five equals the opposite of n?

2(7+5)=n 2(12)=n 24=n but its an opposite n, so the answer is -24


What is the sum of five times a number and eight less than the number?

5*n + (n - 8) = 5n + n - 8 = 6n - 8


What is the sum expression for the sum of n and 5?

The sum of n and 5 is n+ 5


What is The sum of a number and five times the number 6?

The question is ambiguous and the possible answers are n + 5*6 = n + 30 or (n + 5)*6


Write a c program to add the digits of a given no?

THIS IS ONLY FOR UPTO A FIVE DIGIT NO. BY ROHAN ARORA#include#includevoid main(){int a,n,s,sum=0;clrscr();printf("Enter the number between 1 to 5 digits\n");scanf("%d",&a);while(a!=0){n=a%10;sum=sum+n;a=a/10;}printf("The sum of digits of the given numberis %d",sum);getch();}


What do the angles add up to in a five sided shape?

540 degrees according to the formula: 180(n-2)


C code that will give the sum of an entered input?

#include<stdio.h> #include<conio.h> main() { int n,sum=0; printf("enter n value"); scanf("%d",n); while(n!=0) { n=n/10; sum=sum+n; n=n%10; } printf("sum is=%d",sum }


What five consecutive numbers add up to 100?

Let the five consecutive numbers be represented as n-2, n-1, n, n+1, and n+2. The sum of these numbers can be expressed as (n-2) + (n-1) + n + (n+1) + (n+2) = 5n. Setting this sum equal to 100 gives us 5n = 100. Solving for n, we find n = 20. Therefore, the five consecutive numbers that add up to 100 are 18, 19, 20, 21, and 22.


C program to find sum of 'n' number using function?

void main () { int no1, sum, n; clrscr() sum = 0; n = 1; printf("\n enter the number to which sum is to be generated"); scanf("%d",&no1); while(n<=no1) { sum=sum+n; n=n+1 } printf("\n the sum of %d = %d, no1, sum"); getch (); }