#include <iostream> #include <windows.h> using namespace std; int main(void) { while (1) { int i = rand()%31 - 15; cout << i << endl; Sleep(500); } }