Computer Science, asked by murmujayanti175, 1 day ago

write a program in java to multiplthe number 22,11,21​

Answers

Answered by Tan90ismyname
1

Explanation:

import java.lang ;

class Java {

void main ( ) {

int a = 22 ;

int b = 11 ;

int c = 21 ;

int d = (a*b*c);

System.out.print ("d");

}}

Similar questions