-
Notifications
You must be signed in to change notification settings - Fork 0
/
basicas.cpp
84 lines (63 loc) · 1.31 KB
/
basicas.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#include <stdio.h>
#include <conio.h>
#include <string.h>
#include <math.h>
#include <iostream>
#include <stdlib.h>
#include <ctype.h>
#define MAX 20
#define LIM 50
// operacions basicas de datos simples
int leeEntero(char msje[], int min, int max)
{ int num;
do{
printf("%s", msje);
scanf("%d", &num);
}while(!(num>=min && num<=max));
return num;
}
float leeReal(char msje[], float min, float max)
{ float num;
do{
printf("%s", msje);
scanf("%f", &num);
}while(!(num>=min && num<=max));
return num;
}
//operaciones de vector enteros
void iniciaVE(int V[], int m)
{
for(int i=0; i<m; i++)
V[i]=0;
}
//operaciones de vector reales
void iniciaVR(float V[], int m)
{
for(int i=0; i<m; i++)
V[i]=0.0;
}
////operaciones de Tablas
void iniciaTabla(char T[][LIM], int m)
{
for(int i=0; i<m; i++)
T[i][0]=NULL;
}
int validaTabla(char msje[], char T[][LIM], int tam)
{
int opc;
for(int i=0; i<tam; i++)
printf("\n%d: %s",i+1, T[i]);
opc=leeEntero(msje, 1, tam);
return opc;
}
char continuar (char msje[])
{
char rpta;
do{
printf("\n%s", msje);
fflush(stdin);
scanf("%c",&rpta);
rpta= toupper(rpta);
}while(!(rpta=='S' || rpta== 'N'));
return rpta;
}