Sum of postive numbers in python
Python program to get input n and n positive integers (skip the negative number), then compute the sum of positive integers
Sample Input 1:
5 6 7 2 -8 1 8
Sample Output 1:
24
Program or Solution
sum1=0
num=int(input("Enter number:"))
while(num>=0):
sum1+=num
num=int(input("Enter number:"))
print(sum1)
Program Explanation
since 1 is always true, input() statement gets input from user continously, if user enters a negative number it exit from while loop using break statement.Comments
Related Programs
- Print Natural numbers in pyhon
- Print Whole numbers in python
- Print ODD numbers in python
- Print Even numbers in python
- Print Natural numbers in reverse in python
- Sum of natural numbers in python
- N ODD numbers in python
- N Even numbers in python
- sum of Even numbers in python
- Sum of odd numbers in pyhton
- Sum of n numbers in python
- First digit of number in python
- First digit of number is odd or even in python
- Multiply without * operator in Python
- Multiplication Table in Python
- Multiplication Table in Python till M
- Decimal to Binary in Python
- Binary to Decimal in python
- Factorial in Python
coming Soon
coming Soon