To print the sum of even numbers from 0 to 50. (Qbasic Code) To print the sum of even numbers from 0 to 50. CLSs = 0FOR i = 0 TO 50 STEP 2 s = s + iNEXT iPRINT "The sum of the numbers is "; sEND Share : Twitter