Computer Science, asked by am1265, 3 months ago

Write a program to print natural numbers from 1 to 10 in QBASIC.​

Answers

Answered by sadiqpatel6891
2

Answer:

class program

{

public static void main(String[] args)

{

for(i=1;i<=10;i++)

{

System.out.println(i)

}

}

}

Similar questions