Page 1 of 1

help with translation into French of simple pseudocodes

Unread postPosted: 19 Dec 2015, 03:18
by compsystems
Hello, my native language is Spanish

Please can you help me with the translation from English to French, the following examples in pseudocode.



Thank you so much

sample

Process data_types
Declare Integer idz
Declare Real idd
Declare String idt
Declare Boolean idb

Print "Input integer number"
Input idz
Print "the integer is ", idz

Print "input decimal number"
Input idd
Print "the decimal is ", idd

Print "input a text"
Input idt
Print "the text is ", idt

Print "input boolean value"
Input idb
Print "the boolean value is ", idb
End Process


full codes
http://jaimeza.org/others/request/help_translation.rar

Re: help with translation into French of simple pseudocodes

Unread postPosted: 19 Dec 2015, 07:04
by Wistaro
Hi, you're code translated in french is:

Code: Select all
Process types_variables
Declare Entier idz
Declare Réel idd
Declare Chaîne idt
Declare Booléen idb

Afficher "Saisissez un nombre entier:"
Demander idz
Afficher "L'entier est", idz

Afficher "Saisissez un nombre réel: "
Demander idd
Afficher "Le nombre réel est", idd

Afficher "Saisissez un texte"
Demander idt
Afficher "Le texte est", idt

Afficher "Saisissez une valeur booléenne"
Demander idb
Afficher "La valeur booléenne est ", idb
End Process