Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <cstdlib>
- #include <time.h>
- #include <stdio.h>
- #include <iostream>
- using namespace std;
- void zad1()
- {
- int liczba, tab[50], a=0, i=0;
- srand(time(NULL));
- do
- {
- tab[i] = rand()%49+1;
- for(int j=0; j<i; j++)
- {
- if(tab[i]!=tab[j])
- {
- tab[i]=rand()%49+1;
- a++;
- }
- else break;
- }
- i++;
- } while(a<6);
- }
- int main()
- {
- zad1();
- return 0;
- }
- /*
- 1. Wygenerować 6 liczb z zakresu 1 do 49 bez powtórzeń
- 2.Problem wydawania reszty:
- a) wydać dowolną reszę przy założeniu nieograniczonej ilośći nomniałów
- b) przy założeniu ograniczonej ilości nominałów
- 3.Znaleźć minimum funkcji f(x, y) = x^3*ln(1-sin^2*sqrt(x);y
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement