summaryrefslogtreecommitdiffstats
path: root/Bachelor/Prog1/Prakt1/prg1pr1_2/prg1pr1_2.cpp
blob: b8467f10a173d38313d43077996a8e6fedb41469 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Programmieren 1, Praktikum 1, Aufgabe 2
// Sven Eisenhauer
// 27.10.2004

#include <iostream.h>
#include <stdlib.h>

int main()
{
   cout << "Drau�en br�llen B�ren und L�wen!";

   system( "cls" );   // clear screen

   cout << "Drau\xe1\x65n br\x81llen B\x84ren und L\x94wen!";
   //cout << "Drau\x00e1en br\x81llen B\x84ren und L\x94wen!";
   cout << endl;

   cout << "B\x8eREN UND L\x99WEN BR\x9aLLEN.";
   cout << endl << endl;

   return 0;
}