/// @file   main.cpp
/// @author Jens Gruschel
/// @date   2016-07-14
/// Ausgabe von Zufallszahlen in einer Schleife

#include <iostream>
#include <string>
#include <cstdlib>

using std::cout;
using std::endl;

int main()
{
    // Reihe von Zufallszahlen ausgeben
    for (int i = 1; i <= 100; ++i)
    {
        cout << rand() << ", ";
    }
    cout << endl;

    return 0;
}