Created
October 16, 2012 16:52
-
-
Save ernado/3900514 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
| void main() | |
| { | |
| //блок начался, нажимаем tab и делаем отступ | |
| double x = 0; | |
| for (int i=0; i<2; i++) | |
| { | |
| //опять блок начался, опять tab | |
| x = x + 228.0; | |
| //блок кончился, возвращаемся обратно | |
| } //опа, возвратились | |
| } //опять блок кончился |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment