Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
glkink
/
C-programming
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
f0b8d856
authored
Jan 23, 2022
by
glkink
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add new file
parent
878cd712
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
45 additions
and
0 deletions
Suvalisedarvud
Suvalisedarvud
0 → 100644
View file @
f0b8d856
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <stdbool.h>
void swap (int *a, int *b)
{
int temp = *a;
*a = *b;
*b = temp;
}
int main()
{
int algus = 0, lopp = 0, loend = 0;
bool massiiv[1000]={0};
printf("Sisestage vahemik:\n");
scanf("%d %d",&algus, &lopp);
printf("Mitu arvu tahate genereerida?\n");
scanf("%d", &loend);
swap(&lopp,&algus);
srand((unsigned)time(NULL));
printf("Unikaalsed suvalised arvud on: ");
for (int i = 0; i < loend; i++) {
int suvalineArv = algus + rand() % (lopp - algus + 1);
if(!massiiv[suvalineArv]){
printf("%d ", suvalineArv);
}
else{
i--;
massiiv[suvalineArv]=1;
printf("%d ", suvalineArv);
}
}
printf("\n");
return 0;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment