It is 110.
Start print "the sum of all even numbers is infinite" end
The sum of the first 10,000 even numbers is 100,010,000.
The sum of the first 50 even numbers is 2,550.
5 CLS 10 REM PROGRAM TO ADD FIRST 7 EVEN NUMBERS 20 EV = 2 30 SUM = 0 35 PRINT "NUMBERS="; 40 FOR I = 1 TO 7 50 SUM = SUM + EV 55 PRINT EV; 60 EV = EV + 2 70 NEXT I 95 PRINT 80 PRINT "SUM="; SUM 90 END http://arnavguddu.6te.net/
The sum of the first 100 even numbers is 10,100
Te sum of the first 300 even numbers is 90,300.
The sum of the first 10 even numbers is 110.
The sum of the first 30 positive even numbers is 930.
The sum of the first 100 positive even numbers is 10,100.
The sum of the first 30 positive even numbers is 930.
The sum of the first 40 even numbers is 1,640.
The sum of all the first 100 even numbers is 10,100.