class First
{
public static void main (String [] args)
{
int x = 3;
while (x > 0)
{
if (x > 2)
{
System.out.print("a");
}
x = x - 1;
System.out.print("-");
if (x == 2)
{
System.out.print("b c");
}
if (x == 1)
{
System.out.print("d");
x = x - 1;
}
}
}
}
I always had a passion for the field of STEM (Science, Technology, Engineering, and Math) and I knew I wanted to do something to make a difference in the world. I just didn’t know where to start. I was an immigrant in a new country, grew up in a tough environment, and wasn’t sure how… Read More