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.
//-----------------------------------------------------------------------------
#include <iostream>
#include <conio>
#include <iomanip>
using namespace std;
//-----------------------------------------------------------------------------
void nerv(int, int);
int main()
{
int Raum, Computer;
cout<<fixed<<setprecision(2)<<endl;;
cout<<"Ein Programm ... :)"<<endl;
cout<<"***********************************************************************"<<endl<<endl;
cout<<"Raum: C";
cin>>Raum;
cout<<"Computer: c";
cin>>Computer;
cout<<endl;
cout<<"***********************************************************************"<<endl<<endl;
nerv(Raum, Computer);
getch();
return 0;
}
//-----------------------------------------------------------------------------
void nerv(int Raum, int Computer)
{
cout<<"please wait ..."<<endl;
system(" -m \\C"<<Raum<<"c"<<Computer);//befehl unvollständig
//dat funzt aber nit, ebenso "system(" -m \\C%ic%i), Raum, Computer;"
}