For starters, each of your loops will only run once, because the initial values of the loop variables (i and j) already trigger their respective end-loop conditions.
Edit: My apologies - that's what I get for posting before my first coffee of the day. As IdeasMan says below, your loops will run infinitely, because the initial values of the loop variables (i and j) mean that the loop conditions are always true.
You need to think logically about what you want your loops to do.