gon
rss
email
twitter
facebook

COURS DE JAVASCRIPT

no comments
Posted on mardi 26 janvier 2010 by G.O.N the new WORLD
Partager


découvrez le meilleur cours javascript sur
SLAXIGON.BLOGSPOT.COM

Exclusive pour BACinfo
Cours javascript pdf à télecharger :
Click here Click here







Turbo Pascal TPW 1.5 et TP 6 :

no comments
by G.O.N the new WORLD
Partager

Remarque :

les deux versions supporte les commandes graphiques.

TPW 1.5
http://www.ziddu.com/download/8337951/TPW.zip.html

TP 6
http://www.ziddu.com/download/8337949/TP.zip.html












Calcul des termes Un et Vn (suites croisées) :

no comments
Posted on vendredi 22 janvier 2010 by G.O.N the new WORLD
Partager

program suites;
uses wincrt;
var
n:byte;

function V(n:byte):word;forward ;
function U(n:byte):word;
begin
if n=0 then U:=1
else U:= 3+ U(n-1)+2 * V(n-1);
end;
function V(n:byte):word;
begin
if n=0 then V:=2
else V:= 2* U(n-1)+ 3 * V(n-1);
end;

begin
writeln('Donner n : ');
readln(n);
writeln('U ',n,' = ', U(n));
writeln('V ',n,' = ', V(n));
end.



Newer Entries »
« Older Entries

Archives

  • 20 janv. (1)
  • 22 janv. (5)
  • 26 janv. (2)
  • 01 févr. (1)
  • 22 févr. (2)

Followers

Referencement Auto free counters


Copyright © 2010-2011 G.O.N