Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int foo();
- int summ(int n1, int n2) ;
- ///////////////////////////////////////////////////
- int main()
- {
- int n1, // jkhjkhkj
- n; // kjkljkljkj
- std::cout << " const = " << 555 << endl;
- cout << " n = " << n << endl;
- cout << " foo = " << foo() << endl;
- cout << " summ = " << summ(5, 8) << endl;
- return 0;
- }
- ///////////////////////////////////////////////////
- int summ(int n1, int n2) //
- {
- return n1 + n2;
- }
- ///////////////////////////////////////////////////
- int foo() //
- {
- return 278;
- }
- /*
- #include <iostream>
- using namespace std;
- ///////////////////////////////////////////////////
- int main()
- {
- std::cout << " Hello !" << endl;
- return 0;
- }
- */
- // ( )
- // ( )
- // ( )
- // ( )
- // ) )
- // ( ( /\
- // (_) / \ /\
- // ________[_]________ /\/ \/ \
- // /\ /\ ______ \ / /\/\ /\/\
- // / \ //_\ \ /\ \ /\/\/ \/ \
- // /\ / /\/\ //___\ \__/ \ \/
- // / \ /\/ \//_____\ \ |[]| \
- // /\/\/\/ //_______\ \|__| \
- // / \ /XXXXXXXXXX\ \
- // \ /_I_II I__I_\__________________\
- // I_I| I__I_____[]_|_[]_____I
- // I_II I__I_____[]_|_[]_____I
- // I II__I I XXXXXXX I
- // E-mail: dllbridge@gmail.com
- /*
- // Альтернативный вариант простейшей программы. Exe-файл будет "весить" меньше в несколько десятков раз !!!
- #include <stdio.h>
- #include <locale.h> // здесь "живёт" setlocale(LC_ALL, "rus");
- //#include <iostream>
- //using namespace std;
- ////////////////////////////////////////////////
- int main()
- {
- setlocale(LC_ALL, "rus");
- int n = 0;
- // scanf("%d", &n);
- printf("Верные символы %d\n", n);
- // std::cout << " Hello !\n" ;
- return 0;
- }
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement