A and B or not C
Fermé
bill1991
Messages postés
3
Date d'inscription
mercredi 21 janvier 2009
Statut
Membre
Dernière intervention
1 avril 2009
-
1 avril 2009 à 13:15
karl legrand - 26 avril 2011 à 21:13
karl legrand - 26 avril 2011 à 21:13
A voir également:
- A and B or not C
- Or - Guide
- B parts avis - Forum Consommation & Internet
- Sorry this video can not be played. please try again or pick another video iptv - Forum Box et Streaming vidéo
- Reboot and select proper boot device or insert boot media in selected boot device and press a key ✓ - Forum PC portable
- Request header or cookie too large - Forum Webmastering
1 réponse
program mohamedmiasA9;
uses crt;
var a,b,c,t,f :boolean;
i,j,k:integer;
begin
t:=true; f:=false;
a:=true;
i:=1;
while i<3 do begin
if i=2 then a:=f;
j:=1;b:=t;
while j<3 do begin
if j=2 then b:=f;
k:=1;b:=t;
while k<3 do begin
if k=2 then c:=f;
writeln( 'msaid A 9','a=',a,' b=',b,' c=',c,'a and b or not c',a and b or not c);
k:=k+1;
end;
j:=j+1;
end;
i:=i+1;
end;
readln;
end.
edit : mail.
uses crt;
var a,b,c,t,f :boolean;
i,j,k:integer;
begin
t:=true; f:=false;
a:=true;
i:=1;
while i<3 do begin
if i=2 then a:=f;
j:=1;b:=t;
while j<3 do begin
if j=2 then b:=f;
k:=1;b:=t;
while k<3 do begin
if k=2 then c:=f;
writeln( 'msaid A 9','a=',a,' b=',b,' c=',c,'a and b or not c',a and b or not c);
k:=k+1;
end;
j:=j+1;
end;
i:=i+1;
end;
readln;
end.
edit : mail.
21 avril 2010 à 19:34
while
9 mars 2011 à 19:44
26 avril 2011 à 21:13
var A,B,C:boolean ;
begin
writeln(' A B C A and B or not C ');
A:=false;
while A<true do begin
B:=false ;
while b< true do begin
C:=false ;
while c<true do begin
writeln (A,B,C,A and B or not C );
c:=succ(c);
end; // while c
b:=succ(b);
end; // while b
a:=succ(a);
end; // while a
readln;
end.