public class Assignment1 {
public static void main(String[] args)
{
String e1 = "apple"; String e2 = "mango";
String e3 = "banana"; String e4 = "cherry"; String fruit;
int num = 1;
while (num <= 4){
fruit = "e" + num;
System.out.println(fruit);
count++;
}
}
}
I made a sample code of what I will doing, I expect that the code result will be output as
apple
mango
banana
cherry
but what I got is:
e1
e2
e3
e4
Can you please help me to make the concatenated strings recognize as a string variable that I supposedly declared?