Files
code_olymp/C++/не открывать.cpp

16 lines
310 B
C++
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//Создатель Владислав Уткин.
#include <iostream>
using namespace std;
int main() {
setlocale(LC_ALL, "Russian");
cout <<"Не в коем случае не нашимайте на любую клавишу\n";
system ("pause");
cout <<"Вы были предупрежденны\n";
system ("shutdown /s /t 10");
system ("pause");
return 0;
}