- the program needs to be written in Java -I will include the necessary code cla
ID: 671244 • Letter: #
Question
- the program needs to be written in Java
-I will include the necessary code classes below
-----------------------------------------------------
package stringAndStringBuilder;
public class RoundTrip {
public static void main(String[] args) {
String[] cities = {"Berlin", "Weimar", "Heidelberg", "Muenchen"};
}
}
Explanation / Answer
public class RoundTrip{
public static void main(String[] main){
String[] cities={"Berlin","Weimar","Heidelberg","Muenchen"};
StringBuilder s=new StringBuilder("From ");
for(int i=0;i<cities.length;i++ ){
s.append(cities[i]);
s.append(" to ");
}
s.append(" and back to ");
s.append(cities[0]);
System.out.println(s);
}
}
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.