answersLogoWhite

0

Print sum of first ten even numbers?

User Avatar

Anonymous

11y ago
Updated: 8/17/2019

It is 110.

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

Write an algorithm to print sum of all even numbers?

Start print "the sum of all even numbers is infinite" end


What is the sum of the first 10000 even numbers?

The sum of the first 10,000 even numbers is 100,010,000.


Sum of first 50 even numbers?

The sum of the first 50 even numbers is 2,550.


Gw basic program to add first 7 even number?

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/


What is the sum of the first 100 even numbers the sum of the first 5 even numbers is 2 4 6 8 1030?

The sum of the first 100 even numbers is 10,100


Find the sum of first 10 even numbers?

The sum of the first 10 even numbers is 110.


What is the sum of the first 300 even numbers?

Te sum of the first 300 even numbers is 90,300.


The sum of the first 30 positive even numbers?

The sum of the first 30 positive even numbers is 930.


What is the sum of the first 100 positive even numbers?

The sum of the first 100 positive even numbers is 10,100.


What is the sum of the first 30 positive even numbers?

The sum of the first 30 positive even numbers is 930.


What is the sum of the first 40 evn numbers?

The sum of the first 40 even numbers is 1,640.


How do you write a program in Q basic to print the sum of the even numbers from 1 to 20 in reverse order?

To write a program in QBasic that prints the sum of the even numbers from 1 to 20 in reverse order, you can follow these steps: DIM sum AS INTEGER sum = 0 FOR i = 20 TO 2 STEP -2 sum = sum + i NEXT i PRINT "The sum of even numbers from 1 to 20 is: "; sum This program initializes the sum to zero, iterates from 20 down to 2 in steps of -2 (to capture even numbers), adds each even number to the sum, and finally prints the result.