systemweiche.cpp
This commit is contained in:
parent
eb0df7ee84
commit
ca5e4c0eca
1 changed files with 19 additions and 0 deletions
19
systemweiche.cpp
Normal file
19
systemweiche.cpp
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
#ifdef __APPLE__
|
||||||
|
#define CEO "Tim Cook"
|
||||||
|
#elif __unix__
|
||||||
|
#define CEO "Linus Torvalds"
|
||||||
|
#elif __WIN32
|
||||||
|
#define CEO "Steve Ballmer"
|
||||||
|
#else
|
||||||
|
#define CEO "Marc Hannebrook"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
cout << CEO << endl;
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in a new issue