Computer Science, asked by mareeswaran36061, 3 months ago

write a qbasic program to accept two numbers and print the sum and product by leaving two lines in between them

Answers

Answered by SrKaran
0

Answer:

FOR JAVA,

       public class AddTwoNumbers {

  public static void main(String[] args) {

       

     int num1 = 5, num2 = 15, sum;

     sum = num1 + num2;

     System.out.println("Sum of these numbers: "+sum);

  }

}

For C++

#include <iostream>

using namespace std;

int main()

{

   int firstNumber, secondNumber, sumOfTwoNumbers;

   

   cout << "Enter two integers: ";

   cin >> firstNumber >> secondNumber;

   // sum of two numbers in stored in variable sumOfTwoNumbers

   sumOfTwoNumbers = firstNumber + secondNumber;

   // Prints sum  

   cout << firstNumber << " + " <<  secondNumber << " = " << sumOfTwoNumbers;      

   return 0;

}

For Python

# This program adds two numbers

num1 = 1.5

num2 = 6.3

# Add two numbers

sum = num1 + num2

# Display the sum

print('The sum of {0} and {1} is {2}'.format(num1, num2, sum))

I Hope This Will Help You.

Thank You.

Similar questions