Why would you want to use a cycle to get the value to 51? Simply assign
n = 51;
Anyway, if you REALLY need it (which I highly doubt), what you are looking for is:
while (n < 51) n++;
1
solved Why browser always stop working when do while
Why would you want to use a cycle to get the value to 51? Simply assign
n = 51;
Anyway, if you REALLY need it (which I highly doubt), what you are looking for is:
while (n < 51) n++;
1
solved Why browser always stop working when do while