/// @file main.cpp
/// @author Jens Gruschel
/// @date 2016-07-14
/// Zufallszahl ausgeben
#include <iostream>
#include <string>
#include <cstdlib>
int main()
{
// Zufallszahl erzeugen
int result = rand();
// Ergebnis ausgeben
std::string text = "Zufallszahl: ";
std::cout << text << result << std::endl;
return 0;
}