Just put spaces in explicitly:


if(args.length <= 0)
System.out.print("Hello World");
else if (args.length > 0)
{
System.out.print("Hello");
for (int i = 0; i < args.length;...