Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- //////////////////////////////////////////////
- int main() //
- {
- std::cout << "Hello";
- }
- /*
- #include <stdio.h>
- ////////////////////////////////////////////////////
- int main() //
- {
- printf("1 \n");
- printf("2 \n"); goto L_01;
- printf("3 \n");
- printf("4 \n");
- printf("5 \n");
- L_01: printf("6 \n");
- printf("7 \n");
- printf("8 \n");
- }
- */
- /*
- #include <stdio.h>
- #include <locale.h>
- ////////////////////////////////////////////////////
- int main() //
- {
- setlocale(LC_ALL, "Rus");
- int i = 0;
- L_01:
- printf("i = %d \n", i); // Спецификатор
- i ++;
- if( i < 7) goto L_01;
- printf("Программа завершена");
- }
- */
- /*
- #include <stdio.h>
- ////////////////////////////////////////////////////
- int main() //
- {
- for( int i = 0; i < 70; i += 2)
- {
- printf("i = %d \n", i); // Спецификатор
- }
- }
- */
- /*
- #include <stdio.h>
- ////////////////////////////////////////////////////
- int main() //
- {
- int i = 0;
- for( ; ; )
- {
- printf("Hello \n");
- if(i > 15) break;
- i++;
- }
- }
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement