BdP à l'IUT: deux langages algorithmiques
Avantages:
Inconvénients:
exemple:

Corps d'un algorithme simplifié
Données + Corps d'un algorithme détaillé

Demander le prix hors taxe (pHT ) d'un DVD

Demander le nombre (nbDVD) de DVDs achetés

Calculer le prix hors taxe (pHTTot) des nbDVD

Calculer le prix TTC (pTTCTot) en appliquant la TVA (mTVA) à pHTTot

Afficher pTTCTot

  /* Les données */
   float pHT, pHTtot, pTTCTot, mTVA=20.6;
   int nbDVD;
 
  /* Les traitements */
   demander("prix hors taxe d'un DVD", pHT);
   demander( "nombre de DVDs achetés", nbDVD);

   pHTTot = nbDVD * pHT;
   pTTCTot = pHHTot + (pHTTTot *  mTVA/100);
   afficher ("Prix total TTC des ", nbDVD, " DVDs:", pTTCTot);  

suivant      plan