A voir également:
- Ecrire un algorithme qui permet d'afficher le triangle
- Ecrire un algorithme qui permet de resoudre ax²+bx+c=0 - Forum Algorithmes / Méthodes
- Comment ecrire @ sur un ordinateur hp ✓ - Forum Clavier
- Ecrire en gras sur whatsapp - Guide
- Ecrire en miroir - Guide
- ~Comment ecrire arobase clavier hp - Forum Clavier
24 déc. 2010 à 07:32
Néanmoins pour n=2, ceci marchera :
30 mai 2011 à 16:32
13 nov. 2013 à 22:11
uses wincrt ;
var ch: string ;
procedure affichage (ch1,ch2: string ) ;
begin
if ch1 <> '' then
begin
writeln (ch1,ch2) ;
affichage (copy ( ch1,1,length (ch1) -1 ) , copy (ch2,2,length (ch2) -1)) ;
writeln (ch1,ch2) ;
end ;
end ;
begin
writeln ('saisir ch : '); readln (ch ) ;
writeln ;
affichage (ch,ch) ;
end .