Wygenerować losowo 20-elementową tablicę liczb z zakresu [0,....100] i wypisać ją od końca.
w C++
daje naj
Wersja pod C++11: http://ideone.com/GphJ4K
Wersja pod starszy standard: http://ideone.com/mgFSIP
Also, kod dla wersji C++11:
#include <iostream>#include <cstdlib>#include <vector>using namespace std;int main(){ vector<int> tab; for (int i=0; i<19; i++) tab.push_back(rand()%101); for (auto it=tab.rbegin(); it!=tab.rend(); ++it) cout << *it << endl;}
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
Wersja pod C++11: http://ideone.com/GphJ4K
Wersja pod starszy standard: http://ideone.com/mgFSIP
Also, kod dla wersji C++11:
#include <iostream>
#include <cstdlib>
#include <vector>
using namespace std;
int main()
{
vector<int> tab;
for (int i=0; i<19; i++)
tab.push_back(rand()%101);
for (auto it=tab.rbegin(); it!=tab.rend(); ++it)
cout << *it << endl;
}