forked from luchofndz/system-calls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
angulos.c
executable file
·81 lines (73 loc) · 2.12 KB
/
angulos.c
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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
int main(int argc, char *argv[]) {
int num, sup, comp, conj;
num = atoi(argv[2]); //atoi make string to int
string options;
boolean file; //to validate open file
haveFile = false;
FILE *file; // puntero to file
string angulo, aSup, aConj, aCom; // angulos to file
while(options = getop(argc,argv,envp) != -1){ //-1 is when you have no more options
if(option == "-t" || option == "-at" || option == "-ta" ){ //option t
if(num == 0){
printf("Angulo nulo \n");
angulo = "Angulo nulo \n";
}
if(num>0 && num<90){
printf("Angulo agudo \n");
angulo = "Angulo agudo \n";
}
if(num == 90){
printf("Angulo recto \n");
angulo = "Angulo recto \n";
}
if(num > 90 && num < 180){
printf("Angulo obtuso \n");
angulo = "Angulo obtuso \n"
}
if(num == 180){
printf("Angulo llano \n");
angulo = "Angulo llano \n";
}
}
if(option == "-a"|| option == "-at" || option == "-ta"){ //option a
comp = (90-num); //complementario
sup = (180-num);//suplementario
conj = (360-num); //conjugado
if((comp >= 0) && (comp <90)){
aCom = printf("Angulo Complementario: %d \n", comp);
}else{
aCom = printf("Angulo Complementario: no existe \n");
}
if((comp >= 0) && (comp <180)){
aSup = printf("Angulo Suplementario: %d \n", sup);
}else{
aSup = printf("Angulo Suplementario: no existe \n");
}
if((comp >= 0) && (comp <360)){
aConj = printf("Angulo Conjugado: %d \n", conj);
}else{
aConj = printf("Angulo Conjugado: no existe \n");
}
}
}
if(argc[4] == "-f"){ // if have a file
haveFile = true;
file = fopen(argv[5],"wr"); // opened to write access
fputs(angulo, file);
fputs(aCom, file);
fputs(aSup, file);
fConj(aConj, file);
fclose(file);
}
/* fuentes
getop:
http://manpages.ubuntu.com/manpages/bionic/es/man3/getopt.3.html
files:
https://www.aprenderaprogramar.com/index.php?option=com_content&view=article&id=936:escribir-guardar-datos-en-ficheros-o-archivos-en-lenguaje-c-fputc-putc-fputs-fprintf-ejemplos-cu00537f&catid=82&Itemid=210
*/
return 0;
}