Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
#19
#include <iostream> #include <ctime> using namespace std; void wypelnij (int tablica[], int iloscElementow, int poczatek, int koniec) { int licznik = 0; do { tablica[licznik] = (rand()%(koniec-poczatek+1))+poczatek; cout << tablica[licznik] << endl; licznik++; } while (licznik < iloscElementow); } void wypisz (int tablica[], int ilosc) { int licznik = 0; do { cout << "Element [" << licznik << "]: " << tablica[licznik] << endl; licznik++; } while (licznik < ilosc); } int sumuj (int tablica[], int ilosc) { int licznik = 0; int suma = 0; do { suma += tablica[licznik]; licznik++; } while (licznik < ilosc); return suma; } int main() { srand(time(NULL)); int tab[999]; wypelnij(tab, 999, 4, 10); wypisz(tab, 999); int suma = 0; suma = sumuj(tab, 999); cout << "Suma wszystkich liczb, to: " << suma << endl; return 0; }
run
|
edit
|
history
|
help
0
MSVC initializer code
parameter pack workaround
sinem çalışma
#31
multiplie linked list numbers
#9
hangman
decltype_lambda
cv4_template
msvc compile optimization demo...