public class Solution
{ public static void main(String[]args)
{
System.out.println("Ellie is the most beautiful");
System.out.println("Ellie is the most beautiful");
System.out.println("Ellie is the most beautiful");
System.out.println("Ellie is the most beautiful");
System.out.println("Ellie is the most beautiful");
}
}
suresh rai
Level 3
what is wrong with this program ??
Under discussion
Comments (2)
- Popular
- New
- Old
You must be signed in to leave a comment
vikr@nt
4 January 2019, 20:34
This line is an issue i.e. public static void main(String[]args). You should give a space while declaring and array of String i.e. String[] args.
+1
Guadalupe Gagnon
4 January 2019, 14:36
Next time you ask a question do not copy and paste your code in, just make sure that you select attach your code (see below). From the code you posted it looks like you might have changed the solution class or main method, but there isn't enough information. Try resetting the task and, without changing anything, retype the 5 lines (or copy and paste) into the main class.
![]()

+1