p+n=x
Chat with our AI personalities
6+n = 2n+5
if p represents your positive number, and n represents all of your negative numbers, then: |∑n| < p
The sum of n and 5 is n+ 5
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 (); }
The sum of p and q means (p+q). The difference of p and q means (p-q).