write a q basic program - to input any 2 numbers and ptint their sum and product by leaving two lines in between
Answers
import java.util.*;
class basic
{
public static void main ()
{
System.out.println("Enter two numbers");
int a=sc.nextInt ();
int b=sc.nextInt ();
System.out.println("Sum=+"(a+b));
System.out.println ();
System.out.println ();
System.out.println ("Product="(a*b));
}
}
Basic Input
Edit
The INPUT command is used to gather input from the user. This section will attempt to teach you how to gather input upon request from the user. For real-time input, see QBasic/Advanced Input.
Here is the syntax of the input command:
INPUT "[text to user]"; [variable] ' Question mark added
or
INPUT "[text to user]", [variable] ' No question mark added
Example:
INPUT "What is your name"; name$
or
INPUT "What is your age", age
When a semicolon (;) is used after the text output to the user, a question mark (?) and 'space' are added to the output. When a comma (,) is used no question mark is added.
If a string is specified (eg 'name$'), anything the user enters before pressing the 'return' key will be accepted. If a numeric variable (eg 'age') is specified, the user must enter a number (if any non-numeric key is entered, the error message "Redo from start" will be output and the INPUT command rerun)
6INPUT.BAS
Edit
CLS
INPUT "What is your name"; name$
PRINT "Hello, "; name$; "!"
INPUT "How old are you"; age
INPUT "what is your best computer game?", game$
PRINT " name:"; name$
PRINT " age:"; age; " years old"
PRINT "best game:"; game$
Please note: In the PRINT command, the (;) function concatenates (joins) the contents of the string variables with the text between the quotes (" "). Note the use of spaces so that the final printed text reads properly.
If a numerical variables is specified within the PRINT command, an additional space is automatically added both before and after the number.
See also: LINE INPUT command to read a line of text from a file (and place the result in a string variable) or to input a series of variables (in which case any commas found will be treated as delimiters between fields). 5MOD16*4/2^5+9/4