Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
//by Raptor
#include <iostream.h>
#include <ctime>
using namespace std;
int main()
{
long now,end,tmp;
time(&now);
end=now+10;
tmp=now;
for(;now<=end;time(&tmp))
{
if(now!=tmp)
{
cout << end-now << endl;
now=tmp;
}
}
cout << "null" << endl;
return 0;
}