Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <string>
- #include <cassert>
- int Func(int value)
- {
- assert(value > 0);
- std::cout << "Успешно!";
- }
- void main()
- {
- setlocale(LC_ALL, "Rus");
- srand(time(NULL));
- Func(-3);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement