Computer Science, asked by laxmiagarwal606, 5 days ago

write a program and its output to find the product of the sum and difference between 17 and 2 using variable output give​

Answers

Answered by purveshKolhe
2

You can use the following programs::

QBASIC : -

CLS

LET m= 17 - 2

PRINT m

END

PYTHON : -

m = 17 - 2

print(m)

JAVA : -

public class Brainly {

public static void main (String[] args) {

int m = 17 - 2;

System.out.println(m);

}

}

All the programs print 15 as output as 17 - 2 = 15.

HOPE THIS HELPS YOU..

Similar questions