Computer Science, asked by sahamousumi969, 7 months ago

write the following code snippet int a=5; a+=5​

Answers

Answered by saradaditi
0

int a = 5, b = 2;

int c = a/b;

double d = (double) a/b;

int e = (double) a/b;

System.out.println( C+" "+d+""+e);

Similar questions