September 2018 1 19 Report

chciałam zeby losowało rożne liczby a ono cały czas te same

jak ktoś moze niech na to zerknie i poprawi

#include<iostream>
#include<cstdio>
#include<cstdlib>
using namespace std;
int main()
{
int const rozmiar=8;
float tablica1[rozmiar];
for(int i=0;i<rozmiar;i++)
{
srand(int(time(NULL)));
double long liczba;
liczba=rand()%6+1;
tablica1[i]=liczba;
cout<<tablica1[i]<<endl;
}
getchar();
return 0;
}


More Questions From This User See All

Recommend Questions



Life Enjoy

" Life is not a problem to be solved but a reality to be experienced! "

Get in touch

Social

© Copyright 2013 - 2025 KUDO.TIPS - All rights reserved.