Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public static void downByThree (int n) {
- int x = n;
- while (x > 0) {
- int y = n;
- while (y > 0) {
- int z = n;
- while (z > 0) {
- z--;
- }
- y--;
- }
- x--;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement