1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
|
#include <iostream>
#include <string>
using namespace std;
int main()
{
int zahl;
double bruchzahl;
string str;
zahl = 100;
bruchzahl = 100.3;
str = "Hello World";
cout << "Wert von der Zahl: " << zahl << endl;
cout << "Wert von dem Bruch: " << bruchzahl <<endl;
cout << "Ausgabe String: " << str << endl;
cin.get();
return 0;
}
|