Created
May 23, 2013 22:18
-
-
Save plonk/5639913 to your computer and use it in GitHub Desktop.
10 が繰り返す。何度でも初期化されるっぽい
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
| #include <iostream> | |
| using namespace std; | |
| int main() | |
| { | |
| label: | |
| int i(10); | |
| cout << i << endl; | |
| i = 20; | |
| goto label; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment