Napisz program, który oblicza sumę oraz średnią z 10 losowych liczb z przedziału <50,100>. C++
//licze na naj...
#include "stdafx.h"#include <iostream>#include <time.h>using namespace std;int _tmain(int argc, _TCHAR* argv[]){ int los; int x; int suma=0; srand(time(0)); cout<<"Wylosowane liczby: \n"; for (x=0;x<10;x++) { los=50+rand()%(50); suma=suma+los; cout<<los<<','; } cout<<"\n\nSuma wylosowanych liczb: "<<suma; cout<<"\nSrednia wylosowanych liczb: "<<suma/10.0; cout<<"\n\n\n"; return 0;}
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
//licze na naj...
#include "stdafx.h"
#include <iostream>
#include <time.h>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
int los;
int x;
int suma=0;
srand(time(0));
cout<<"Wylosowane liczby: \n";
for (x=0;x<10;x++)
{
los=50+rand()%(50);
suma=suma+los;
cout<<los<<',';
}
cout<<"\n\nSuma wylosowanych liczb: "<<suma;
cout<<"\nSrednia wylosowanych liczb: "<<suma/10.0;
cout<<"\n\n\n";
return 0;
}