<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">public class ProvaBlocchi {

    public static void main(String[] args) {

	double a = 0;

	{
	    int b = 10;
	    System.out.println(b + "/" + a + " = " + (b/a));
	} 

	{
	    int b = -5;
	    System.out.println(b + "/" + a + " = " + (b/a));
	} 

	{
	    int b = 0;
	    System.out.println(b + "/" + a + " = " + (b/a));
	} 

    }
}
</pre></body></html>