Skip to content

Instantly share code, notes, and snippets.

@misodengaku
Created March 25, 2013 22:32
Show Gist options
  • Save misodengaku/5241454 to your computer and use it in GitHub Desktop.
Save misodengaku/5241454 to your computer and use it in GitHub Desktop.
イメージ (参考:http://www14.ocn.ne.jp/~bkclass/doc_sha1.html
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