Computer Science, asked by Pranjal2171, 4 days ago

write a program in QBASIC to add 5,10 and 12 number and display out

Answers

Answered by samarthkrv
0

Answer:

public class Main

{

public static void main(String[] args) {

 System.out.println(5+10+12);

}

}

Explanation:

Similar questions