What will be the output:
100/11
in java
Answers
Answered by
1
Complete Códe :
public class Divide {
public static void main(String[] args) {
System.out.println(100/11);
}
}
Output will be: 9
Attachments:
Similar questions