Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- void foo();
- /////////////////////////////////////////////////////////////
- int main() //
- {
- foo();
- }
- /////////////////////////////////////////////////////////////
- void foo()
- {
- int n = 232;
- scanf("%d", &n);
- printf("n = %d", n);
- }
- /*
- #include <stdio.h>
- /////////////////////////////////////////////////////////////
- int main() //
- {
- int n = 232;
- scanf("%d", &n);
- printf("n = %d", n);
- }
- */
- /*
- #include <stdio.h>
- /////////////////////////////////////////////////////////////
- int main() //
- {
- int n = 232;
- int b = n + 1;
- float fl = 3.1234;
- printf("%0.2f = %d", fl, n+7);
- }
- */
- /*
- #include <stdio.h>
- #include <locale.h> // здесь "живёт" setlocale(LC_ALL, "rus");
- int n;
- /////////////////////////////////////////////////////////////
- int main() //
- {
- setlocale(LC_ALL, "rus");
- printf("Верные символы %d", 77);
- scanf("%d", n);
- return 0;
- }
- */
- /*
- #include <iostream>
- using namespace std;
- int main()
- {
- setlocale(LC_ALL, "rus");
- cout << "Привет - Hello !" << endl;
- return 0;
- }
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement