Porfavor!! ejemplos demath.mod; math.sqrt; if; anidadaen lenguaje informatico;;;
Respuestas a la pregunta
Contestado por
0
Que lenguaje es?
Ejemplo de libreria Math.h
int y, x = 9;
y=sqrt(x);
If anidado:
if(x == 0){
printf("Hola mundo");
}
else if (x < 0){
printf("HolaMundo2");
}
else if(x>0){ printf("Hola mundo 3");
}
Forma 2:
if(x == 0){
printf("Hola mundo");
}
if (x < 0){
printf("HolaMundo2");
}
if(x>0){ printf("Hola mundo 3");
}
Ejemplo de libreria Math.h
int y, x = 9;
y=sqrt(x);
If anidado:
if(x == 0){
printf("Hola mundo");
}
else if (x < 0){
printf("HolaMundo2");
}
else if(x>0){ printf("Hola mundo 3");
}
Forma 2:
if(x == 0){
printf("Hola mundo");
}
if (x < 0){
printf("HolaMundo2");
}
if(x>0){ printf("Hola mundo 3");
}
Otras preguntas
Matemáticas,
hace 8 meses
Matemáticas,
hace 8 meses
Castellano,
hace 1 año
Ciencias Sociales,
hace 1 año