Taller 3 Estructuras Secuenciales
Taller 3 Estructuras Secuenciales
Taller 3 Estructuras Secuenciales
ALUMNA
GINELLA ALVAREZ
TAI-82
INSTRUCTOR:
ANDREY RENTERIA
MICROS
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
Serial.setTimeout(5000);
//captura de datos
Serial.println("escriba un numero entero");
memset(text,0,sizeof(text)); //borra el buffer de datos
Serial.readBytesUntil('\r',text, 10);
A = atoi(text); //convertir ascii a int
//operaciones
R=((A+B)^2)/3;
}
PUNTO #5
int CODIGO;
float C1,C2,C3,C4,C5,PRO;
char text[10];
void setup(){
// put your setup code here, to run once:
Serial.begin(9600);
Serial.setTimeout(5000);
}
void loop() {
// put your main code here, to run repeatedly:
//captura de datos
Serial.print("ingrese el codigo del estudiante :");
memset(text,0,sizeof(text));
Serial.readBytesUntil('\r',text, 10);
CODIGO = atoi(text);
//operaciones
float NUM,CUA,CUB;
char text[10];
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
Serial.setTimeout(5000);
//captura de datos
Serial.println("escriba un numero entero");
memset(text,0,sizeof(text)); //borra el buffer de datos
Serial.readBytesUntil('\r',text, 10);
NUM = atof(text); //convertir ascii a int
//operaciones
CUA=pow(NUM,2); //Cuadrado
CUB=pow(NUM,3); //Cubo
//resultado
Serial.print("El resultado del cuadrado es:");
Serial.print(CUA);
}
PUNTO #7
float A,B,PER,SUP;
char text[10];
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
Serial.setTimeout(5000);
//captura de datos
Serial.println("escriba la altura");
memset(text,0,sizeof(text)); //borra el buffer de datos
Serial.readBytesUntil('\r',text, 10);
A = atof(text); //convertir ascii a int
Serial.println("escriba la base");
memset(text,0,sizeof(text)); //borra el buffer de datos
Serial.readBytesUntil('\r',text, 10);
B = atof(text); //convertir ascii a int
//operaciones
PER= (A+B)*2; //perimetro
SUP= B*A; //superficie
//resultado
Serial.print("El perimetro es:");
Serial.print(PER);
}
PUNTO #8
float A,R;
char text[10];
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
Serial.setTimeout(5000);
//captura de datos
Serial.print("ingrese el valor del radio :");
memset(text,0,sizeof(text));
Serial.readBytesUntil('\r',text, 10);
R = atof(text);
//operaciones
A = PI*pow(R,2);
Serial.print("El area de la circunferencia es :");
Serial.println(A);
void loop() {
// put your main code here, to run repeatedly:
}
PUNTO #9
int PES,LON;
char text [20];
char NOM;
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
Serial.setTimeout(5000);
//captura de datos
Serial.print("ingrese el nombrel del dinosaurio");
memset(text,0,sizeof(text)); //borra el buffer de datos
Serial.readBytesUntil('\r',text, 20);
NOM = (text);
//operaciones
PES = PES*0,4535924;
LON = LON*0.3048006;
//resultado
Serial.print(" El peso del dinosaurio es:");
Serial.println(PES);
void loop() {
// put your main code here, to run repeatedly:
}
PUNTO #10
int CANT;
char text [10];
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
Serial.setTimeout(5000);
//captura de datos
//operaciones
CANT = CANT*3.25;
//resultado
Serial.print(" la cantidd expresada es:");
Serial.println(CANT);
void loop() {
// put your main code here, to run repeatedly:
}
PUNTO #11
void setup() {
// put your setup code here, to run once:
Serial.begin (9600);
Serial.setTimeout(5000);
//captura de datos
Serial.println(" escriba el radio del cilindro");
memset(text,0,sizeof(text));
Serial.readBytesUntil('\r',text, 10);
RADIO= atof(text);//convierte ascii a entero
//operaciones
AREA= 2*PI*RADIO*ALT; //area requerida
VOL=PI*pow(RADIO,2)*ALT; //volumen requerido
//impresion de resultados
Serial.print("area del cilindro es:");
Serial.print(AREA);
}
PUNTO #12
void setup() {
// put your setup code here, to run once:
Serial.begin (9600);
Serial.setTimeout(5000);
//captura de datos
Serial.println(" escriba la extension del terreno en
acres");
memset(text,0,sizeof(text));
Serial.readBytesUntil('\r',text, 20);
EXT= atof(text);//convierte ascii a entero
//operaciones
HEC
} = 4047*EXT; //area en Hectareas
//impresion de resultados
Serial.print("estos acres son= ");
Serial.print(HEC);
Serial.print("Metros cuadrados");
}
}