
Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
japublic class Exercise2 { public static void main(String[] args) { String c,d; c = new String("Ciao mondo"); ......................................
Typology: Exercises
1 / 1
This page cannot be seen from the preview
Don't miss anything!

public class Exercise2 { public static void main(String[] args) { String c,d; c = new String("Ciao mondo"); d = new String("Ciao mondo"); if (c.equals(d)) { System.out.println("True"); } else { System.out.println("false"); } } }