Computer Science, asked by kwinaqueen, 1 day ago

Divide a number 33 with 7 and store its remainder into the variable A​

Answers

Answered by suchxndra
0

Answer:

int x = 33, y = 7, A;

A = x%y;

Answered by neelam63515
0

Scanner sc=new Scanner(System.in);

int a;

a=33%7;

System.out.println(a);

Similar questions