100 likes | 270 Views
ESTRUCTURA DEL LENGUAJE C. int main () { }. INSTRUCCIONES DEL LENGUAJE C: ESCRIBIR Y LEER. printf ( "Ingrese el valor de a: " ); scanf ( "%f" , & a );. INSTRUCCIONES DEL LENGUAJE C: SI Y SINO. if ( numero % 2 == 0 ) { printf ( "el numero es par<br> " ); } Else {
E N D
ESTRUCTURA DEL LENGUAJE C intmain(){}
INSTRUCCIONES DEL LENGUAJE C:ESCRIBIR Y LEER printf("Ingrese el valor de a: "); scanf("%f",&a);
INSTRUCCIONES DEL LENGUAJE C:SI Y SINO if(numero % 2==0) {printf("el numero es par\n"); } Else { printf("el numero es impar\n"); }
Algoritmo 1: Hola mundo. Proceso AlgoritmoEscribir "Hola mundo!"; Escribir“ “;Fin Proceso
Algoritmo 1: Hola mundo. #include <stdio.h>#include <stdlib.h>intmain(){printf("Hola mundo!\n");printf("\n");system("pause");return EXIT_SUCCESS;}
Algoritmo 2: Suma de 2 números Proceso AlgoritmoEscribir "Ingrese el valor de a:";Leer a;Escribir "Ingrese el valor de b:";Leer b; suma <-a+b;Escribir "Valor de suma: ", suma;FinProceso
Algoritmo 2: Suma de 2 números #include <stdio.h>#include <stdlib.h>intmain(){float a, b, suma;printf("Ingrese el valor de a: ");scanf("%f",&a);printf("Ingrese el valor de b: ");scanf("%f",&b); suma=a+b;printf("Valor de suma: %g\n", suma);printf("\n");system("pause");return EXIT_SUCCESS;}
Algoritmo 3: Numero par o impar Proceso AlgoritmoEscribir "Ingrese el valor de numero:";Leer numero;Si numero MOD 2 = 0 EntoncesEscribir "el numero es par";SiNoEscribir "el numero es impar";FinSiFinProceso
Algoritmo 3: Numero par o impar #include <stdio.h>#include <stdlib.h> intmain(){int numero;printf("Ingrese el valor de numero: ");scanf("%d",&numero);if(numero%2==0)printf("el numero es par\n");elseprintf("el numero es impar\n");printf("\n");system("pause");return EXIT_SUCCESS;}