File: fibo.e

package info (click to toggle)
libjlatexmath-java 1.0.7-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,268 kB
  • sloc: xml: 23,113; java: 13,399; makefile: 37; cpp: 30; sh: 10
file content (53 lines) | stat: -rw-r--r-- 1,151 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
indexing
	description :
		"{
		Le terme de rang `n' de la suite de Fibonacci (Version récursive 
		terminale).
		La suite de Fibonacci est définie par :
			<xi:include 
				xmlns:xi="http://www.w3.org/2001/XInclude"
				href="&equations;eq-2dim.xml"
				parse="xml"/>
		}"
	auteurs       : "Christophe HARO"
	copyright_auteur  : "Auteur  : (c) Christophe HARO, 2010"
	licenses_url  : "http://www.gnu.org/licences/gpl-3-0.html"
	licence       : "GPL"
	projet        : "JLATEXMATH"
	dossier       : "${DOCBOOK}/jlatexmath/"
	fichier       : "fibo.e"
	date          : "$Date: 2010-04-16 09:28:46 +0200 (Ven 16 avr 2010) $"
	revision      : "$Revision: 13 $"
	url           : "$HeadURL: svn://localhost/jlatexmath/programmes/fibo.e $"
	modifications : "$Author: haro $"	
		
...

feature

	fibonacci(n : INTEGER) : INTEGER is
			-- Le terme de rang `n'
		require
			n > 0
			
		do
			Result := fibo(n, 1, 1)
			
		ensure
			"{ Result = le terme de rang `n'}"
		end
		
feature {}

	fibo(n, F1, Resultat : INTEGER) : INTEGER is
	
		do
			if n < 3 then
				Result := Resultat
			else
				Result := fibo(n-1, Resultat, Resultat + F1)
			end
		end
		
...