1 / 12

ESTRUCTURA DEL LENGUAJE C

ESTRUCTURA DEL LENGUAJE C. int main () { }. INSTRUCCIONES DEL LENGUAJE C: ESCRIBIR Y LEER. printf ( "Ingrese el valor de a: " ); scanf ( "%f" , & a ); printf ( " nValor de suma: %f" ,  a );. INSTRUCCIONES DEL LENGUAJE C: SI Y SINO. if ( numero % 2 == 0 )

morna
Download Presentation

ESTRUCTURA DEL LENGUAJE C

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. ESTRUCTURA DEL LENGUAJE C intmain(){}

  2. INSTRUCCIONES DEL LENGUAJE C:ESCRIBIR Y LEER printf("Ingrese el valor de a: "); scanf("%f",&a); printf("\nValor de suma: %f", a);

  3. INSTRUCCIONES DEL LENGUAJE C:SI Y SINO if(numero % 2==0) {printf("el numero es par\n"); } Else { printf("el numero es impar\n"); }

  4. Algoritmo 1: Hola mundo. Proceso AlgoritmoEscribir "Hola mundo!"; Escribir “ “;Fin Proceso

  5. Algoritmo 1: Hola mundo. #include <stdio.h>#include <stdlib.h>intmain(){printf("Hola mundo!\n");printf("\n");system("pause");return EXIT_SUCCESS;}

  6. Algoritmo 1: Hola mundo. Module Algoritmo    Sub Main()Console.WriteLine("Hola mundo!")Console.WriteLine()Shell ("cmd /c pause", AppWinStyle.NormalFocus, True)End SubEnd Module

  7. 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

  8. 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: %f\n", suma);printf("\n");system("pause");return EXIT_SUCCESS;}

  9. Algoritmo 2: Suma de 2 números Module Algoritmo    Sub Main()Dim a, b, suma As DoubleConsole.Write("Ingrese el valor de a: ")        a =Double.Parse(Console.ReadLine())Console.Write("Ingrese el valor de b: ")        b =Double.Parse(Console.ReadLine())        suma=a+bConsole.WriteLine("Valor de suma: " & suma)Console.WriteLine()        Shell ("cmd /c pause", AppWinStyle.NormalFocus, True)End SubEnd Module

  10. 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

  11. 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;}

  12. Algoritmo 3: Numero par o impar Module Algoritmo    Sub Main()Dim numero As IntegerConsole.Write("Ingrese el valor de numero: ")        numero =Integer.Parse(Console.ReadLine())If numero Mod2=0ThenConsole.WriteLine("el numero es par")ElseConsole.WriteLine("el numero es impar")EndIfConsole.WriteLine()        Shell ("cmd /c pause", AppWinStyle.NormalFocus, True)End SubEnd Module

More Related