Estudiante

Páginas: 3 (606 palabras) Publicado: 15 de noviembre de 2012
# include <stdio.h>
# include <conio.h>
char nom[25];
float nota1;
int main()
{
printf("\n\t EXAMEN DE ADMISION A LA UNIVERSIDAD");
printf("\n\t Ingrese nombre delestudiante: ");
scanf("%s", &nom);
printf("\n\t Ingrese nota1 del estudiante: ");
scanf("%f", ¬a1);
if (nota1>=65)
printf("\n\t APROBADO ");
elseprintf("\n\t RECHAZADO: le falta %5.2f Puntos ", 65-nota1);

getch();
}

# include <stdio.h>
# include <conio.h>
int main()
{
int edad;
printf("\n\t COMPARACION MEDIANTE LA EDADDE UNA PERSONA");
printf("\n\t Ingrese edad de una persona: ");
scanf("%d", &edad);
if (edad>=18 and edad <=35)
printf("\n\t SELECCIONADO ");
elseprintf("\n\t NO SELECCIONADO");
getch();
}

# include <stdio.h>
# include <conio.h>
int main()
{
int edad;
float conduc;
printf("\n\t PROGRAMA PARA SELECCIONAR JUGADORES DELCOLEGIO ");
printf("\n\t Ingrese edad del estudiante: ");
scanf("%d", &edad);
printf("\n\t Ingrese la conducta del estudiante: ");
scanf("%f", &conduc);
if(edad>=12 && conduc ==16)
printf("\n\t ESTUDIANTE SELECCIONADO ");
else
printf("\n\t ESTUDIANTE NO SELECCIONADO");
getch();
}

# include <stdio.h>
# include<conio.h>
int main()
{
int edad, expe1;
char nom [25];
printf("\n\t ASPIRANTE PARA CONSEGUIR EMPLEO");
printf("\n\t Ingrese el nombre del aspirante: ");
scanf("%s", &nom);printf("\n\t Ingrese la edad del aspirante: ");
scanf("%d", &edad);
printf("\n\t Ingrese la experiencia del aspirante: ");
scanf("%d", &expe1);
if (edad > 25 orexpe1== 5)
printf("\n\t ADMITIDO PARA EL EMPLEO ");
else
printf("\n\t NO ES ADMITIDO PARA EL EMPLEO");
getch();
}

# include <stdio.h>
# include <conio.h>
int main()...
Leer documento completo

Regístrate para leer el documento completo.

Estos documentos también te pueden resultar útiles

  • Estudiante
  • Estudiante
  • Estudiante
  • Estudiante
  • El estudiante
  • Estudiante
  • Estudiante
  • Estudiante

Conviértase en miembro formal de Buenas Tareas

INSCRÍBETE - ES GRATIS