Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /******************************************************************************
- Online C Compiler.
- Code, Compile, Run and Debug C program online.
- Write your code in this editor and press "Run" button to compile and execute it.
- *******************************************************************************/
- #include <stdio.h>
- #include <time.h>
- #include <stdlib.h>
- #include <malloc.h> // подключаем библиотеки
- int main()
- {
- srand(time(NULL));
- int n = 20, k = 0;
- int* mas1;
- mas1 = (int*)malloc(n * sizeof(int)); // задаём массив a
- int* mas2;
- mas2 = (int*)malloc(n * sizeof(int)); // задаём массив b
- int* c;
- c = (int*)malloc(n * sizeof(int)); // задаём массив c
- for(int i = 0; i < n; i++) { // заполняе массивы a и b случайными числами и массив c в сулчае выполнения условия
- mas1[i] = rand() % 100;
- mas2[i] = rand() % 100;
- if(mas1[i] > mas2[i]) {
- c[k] = mas1[i];
- k++;
- }
- }
- for(int i = 0; i < n; i++) { // выводим массив a
- printf("%d ", mas1[i]);
- }
- printf("\n");
- for(int i = 0; i < n; i++) { // выводим массив b
- printf("%d ", mas2[i]);
- }
- printf("\n");
- for(int i = 0; i < k; i++) { // выводим массив c
- printf("%d ", c[i]);
- }
- free(mas1);
- free(mas2);
- free(c);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement