Computer Science, asked by anjujoshi1980, 1 month ago

0-1 Write
an
algrithm to
subtract
two number?​

Answers

Answered by purveshKolhe
1

Answer:

QBASIC::

CLS

PRINT 5-4

END

JAVA::

public class Brainly {

public static void main(String [] args) {

System.out.println(5-4);

}

}

PYTHON::

print(5-4)

Answered by sshivji052
1

Answer:

step 1 start

step 2 read two numbers A and B

step 3 Answer =A-B.

step 4 Display answer

step 5 stop

Similar questions