domingo, 20 de mayo de 2018

Indicadores en sitios de Internet

UTN




Felicitaciones  a todos los alumnos que se presentaron el 1/12/2016 a rendir sus respectivos exámenes en UTN. Excelentes notas obtenidas. Me siento feliz por los frutos obtenidos gracias a su esfuerzo!!! Prof. Alicia

Felicitaciones Gonzalo Pader!!!! por haber obtenido por segundo año consecutivo 100% de puntaje, merecedor de una nueva mención de honor en la UTN. 

jueves, 17 de mayo de 2018

Lenguaje C


#include <stdio.h>

int main()
{
   printf( "Hola mundo" );

   return 0;
}
 

EJEMPLO No. 1: PROGRAMA QUE LEE DOS NÚMEROS Y ESCRIBE EL MAYOR DE LOS DOS.
#include <stdio.h>
main()
{
int x, y;
printf(“Escribe el primer número: “);
scanf(“%d”,&x);
printf(“Escribe el segundo número:”);
scanf(“%d”,&y);
if (x > y)
printf(“El mayor es: %d”,x);
else
if ( y > x )
printf(“El mayor es: %d”,y);
else
printf(“Son iguales”);
}
 


EJEMPLO No. 1: PROGRAMA QUE LEE DOS NÚMEROS Y ESCRIBE EL MAYOR DE LOS DOS.
#include <stdio.h>
main()
{
int x, y;
printf(“Escribe el primer número: “);
scanf(“%d”,&x);
printf(“Escribe el segundo número:”);
scanf(“%d”,&y);
if (x > y)
printf(“El mayor es: %d”,x);
else
if ( y > x )
printf(“El mayor es: %d”,y);
else
printf(“Son iguales”);
}


Bienvenidos!!!!

BIENVENIDOS AL BLOG DEL INSTITUTO RAÍCES Y ALAS ...