domingo, 20 de mayo de 2018
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;
}
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”);
}
Suscribirse a:
Comentarios (Atom)
REDES SOCIALES
MATERIAL DE TRABAJO
-
Trabajo Práctico de NTICx Tema: Componentes Físicos de la Computadora Curso: 4° Año – Ciclo Superior fecha de presentación : 30 de m...
-
TP 1 WORD
-
TRABAJO PRÁCTICO INTEGRADOR Nº 1 – BASES DE DATOS 1. ¿Qué es una base de datos? 2. ¿Cómo funcionaban las primeras base...