Siema, napisałem program FAKE, który udaje, że wyłączy mi komputer. Oto kod:
#include <cstdlib>
#include <iostream>
using namespace std;
int main()
{
start:
system("cls");
system("title Auto Wylanczacz");
cout << "AutoWylaczanie - Wlaczone" << endl;
cout << "Nie wylaczaj komputera!" << endl;
cout << "Zostanie wylaczony o 23:00!" << endl;
cout << "aby przerwac wcisnij 1" << endl;
int a;
cin >> a;
if(a != 1)
{
system("cls");
goto start;
}
if(a == 1)
{
cout << "Podaj haslo aby dezaktywowac autowylanczanie:" << endl;
char b;
cin >> b;
if (b = 'makaron')
{
cout << "Dezaktywowano autowylanczanie hasla!" << endl;
}
else cout << "Nie dezaktywowano autowylanczania." << endl;
}
goto start;
system("pause");
return 0;
}
Coś tu jest nie tak, ale co?!