Hey guys, i got an assignment to write a java program that takes a command line argument (N) and creates a checkerBox like the one below if N is 5 :
* * * * *
* * * * *
* * * * *
* * * * *
* * * * *
Pleas notice the small detail that first line starts with a "*" and the second with a space, and so on ...
Till now, i have managed to write the folowing :
public...