RepasoMenorca.com

RepasoMenorca.com

  • Inici / Inicio / Homepage

IFC33. DAW

  • O484. Databases in English

    • O484. DIDACTIC UNITS (English)
    • O484. Students' Work (English)
  • O487. Entorns de desenvolupament.

    • O487. Contingut Oficial
    • O487. UNIT. DIDÀCTIQUES
    • O487. Feina Alumnes
  • O613. Web development in server environment

    • O613. Official Content
    • O613. DIDACTIC UNITS
    • O613. Students' Work

DAW

  • DAW Programming

    • PseudoCodigo SL
    • C C++ C#
    • VB.NET
  • DAW Client side Languages

    • HTML
    • CSS
    • JavaScript
  • DAW Server side Languages

    • PHP
    • JSP
    • ASP.NET
    • Python
    • JAVA
    • Perl
    • RUBY
    • Node.js
  • DAW Databases

    • SQL (language)
    • MySQL
    • MariaDB
    • SQLite
    • postgreSQL
    • MongoDB (NoSQL)
    • CouchDB (NoSQL)
  • DAW IDE & frameworks

    • Xampp
    • Code Editors
      • Visual Studio Code
      • Brackets
      • CodePen
    • Front-End frameworks
      • Bootstrap
      • Materialize
      • Normalize
    • JS frameworks
      • JS fw - Angular
      • JS fw - React
      • JS fw - Vue.js
    • PHP frameworks
      • PHP fw - Laravel
      • PHP fw - Symfony
    • IDE
      • IDE NetBeans
      • IDE Eclipse
      • IDE Visual Studio
    • Git and GitHub
  • DAW Conferences

    • DAW Software Development
    • DAW Marketing
    • DAW Coaching
      • Develop your speaking skills
    • DAW People
  • DAW Operating Systems

    • Linux
    • MS Windows 7
    • MS Windows 10
  • DAW Security

  • DAW Documentation

    • UML - Unified Modeling Language
  • DAW QuickReference

  • RepasoMenorca.com
  • DAW
  • DAW Programming

PseudoCodigo SL

Centro Nacional de Computación de Paraguay

https://www.cnc.una.py/sl/

 

Manual de programación en PseudoCodigo SL

 

Ejemplos

 

Ejemplo 1. Cálculo del Máximo Común Divisor

/*

 * Cálculo del máximo común divisor utilizando el algoritmo de Euclides.

 * (c) This email address is being protected from spambots. You need JavaScript enabled to view it.

 */

var

   a, b : numerico

inicio

   imprimir ("Ingrese dos enteros positivos:")

   leer (a, b)

   si ( (a < 1) or (b < 1) ) {

       terminar (“\nLos valores ingresados deben ser positivos”)

   }

   mientras (a <> b ) {

      si ( a > b ) {

         a = a - b

      sino

         b = b - a

      }

   }

   imprimir (“\nEl MCD es “, a)

fin


+INFO

  • Information & Communication Technologies

  • Telecommunication

Illes Balears

  • IB Formació Professional

    • FP Bàsica
      • IFC11. Informàtica i Comunicacions
      • IFC12. Informàtica d'oficina
    • FP Grau Mitjà
      • IFC21. Sistemes microinformàtics i xarxes
    • FP Grau Superior
      • IFC31. Administració de sistemes informàtics en xarxa
      • IFC32. Desenvolupament d'aplicacions multiplataforma
      • IFC33. Desenvolupament d'aplicacions web

Back to Top

© 2019 RepasoMenorca.com