-
Notifications
You must be signed in to change notification settings - Fork 0
/
ex5_26.cpp
42 lines (35 loc) · 964 Bytes
/
ex5_26.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Escrever um programa C que inicialize randomicamente os elementos de uma matriz quadrada de ordem 10 de inteiros no intervalo [0,99]. Solicitar ao usu´ario, em tempo de execu¸c˜ao, a digita¸c˜ao de um nu´mero inteiro tamb´em no intervalo [0,99].
//Verificar se o numero digitado esta presente na matriz.
#include <stdio.h>
#include <time.h>
#include <stdlib.h>
#define SIZE 10
int main() {
srand(time(0));
int i;
int j;
int num;
int flag = 0;
int mat[SIZE][SIZE];
printf("Conteudo da matriz:\n");
for (i = 0, j= 0; i < SIZE; i++, j++) {
for (j = 0; j < SIZE; j++){
mat[i][j] = rand()%100;
printf("%2d ", mat[i][j]);
}
printf("\n");
}
printf("\n");
scanf("%d", &num);
for (i = 0, j= 0; i < SIZE; i++, j++) {
for (j = 0; j < SIZE; j++){
if(mat[i][j] == num){
flag = 1;
printf("\nEsta presente na matriz, posicao [%d][%d]", i, j);
}
}
}
if(flag == 0){
printf("\nNenhum valor encontrado!");
}
}