Computer Science, asked by Yashikaweeb1234, 6 days ago

REM program to print numbers between 1 to 50​

Answers

Answered by buttlarohith579
1

Answer:

10 REM 'Program to find the sum of of even numbers between 10 and 50' 20 CLS 30 LET s = 10 40 FOR i = 10 TO 50 STEP 2 50 LET s = s + i 60 NEXT i 70 PRINT ...

Answered by samarthkrv
0

Answer:

public class Main

{

public static void main(String[] args) {

    for(int i = 0; i < 51; i++)

    {

        System.out.println(i);

    }

}

}

Explanation:

Similar questions