Created
March 25, 2013 22:32
-
-
Save misodengaku/5241454 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for (t = 0; t < 20; t+4) { | |
処理(); | |
処理(); | |
処理(); | |
処理(); | |
処理(); | |
} | |
/* 20~39回目の演算 */ | |
for (t = 20; t < 40; t++) { | |
処理(); | |
} | |
/* 40~59回目の演算 */ | |
for (t = 40; t < 60; t++) { | |
処理(); | |
} | |
/* 60~79回目の演算 */ | |
for (t = 60; t < 80; t++) { | |
処理(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment