To print the sum of the even numbers from 10 to 50. (Qbasic Code) REM To print the sum of the even numbers from 10 to 50. (Qbasic Code) CLSLET s = 0FOR i = 10 TO 50 STEP 2 LET s = s + iNEXT iPRINT "The sum of the numbers is "; sEND Share : Facebook Twitter Previous Newer Post Next Older Post