Given a set of 100 numbers write an algorithm to find the total number of even and odd numbers in the list. Also find their sum | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

Given a set of 100 numbers write an algorithm to find the total number of even and odd numbers in the list. Also find their sum

15th Apr 2020, 3:29 PM
Vedant Joshi
Vedant Joshi - avatar
2 Answers
+ 3
Welcome to the SoloLearn forum, Vedant Joshi! Please read through our guidelines before posting: https://www.sololearn.com/discuss/1316935/?ref=app What language are you referring to? What have you tried so far? Please provide a link to your code so far, so that we can see where you are struggling.
15th Apr 2020, 3:35 PM
Shadow
Shadow - avatar
0
s=[1, 2,.......,100] sum1=0 sum2=0 c1=0 c2=0 for i in s: if i%2==0: c1+=1 sum1+=i else: c2+=1 sum2+=1 print(sum1, c1, sum, c2) You can also shorten the code... To get a cleat idea I wrote like this...
15th Apr 2020, 3:37 PM
sarada lakshmi
sarada lakshmi - avatar