Click here to Skip to main content
16,014,294 members
Home / Discussions / Algorithms
   

Algorithms

 
AnswerRe: Need help with "!" sign in postfix parser Pin
Luc Pattyn8-Jan-07 16:11
sitebuilderLuc Pattyn8-Jan-07 16:11 
GeneralRe: Need help with "!" sign in postfix parser Pin
thailehuy8-Jan-07 16:18
thailehuy8-Jan-07 16:18 
GeneralRe: Need help with "!" sign in postfix parser Pin
Luc Pattyn8-Jan-07 16:57
sitebuilderLuc Pattyn8-Jan-07 16:57 
GeneralRe: Need help with "!" sign in postfix parser Pin
thailehuy8-Jan-07 17:30
thailehuy8-Jan-07 17:30 
GeneralRe: Need help with "!" sign in postfix parser Pin
Luc Pattyn8-Jan-07 17:43
sitebuilderLuc Pattyn8-Jan-07 17:43 
GeneralRe: Need help with "!" sign in postfix parser Pin
thailehuy8-Jan-07 17:53
thailehuy8-Jan-07 17:53 
QuestionFIBONACCI CODE Pin
john_rei7-Jan-07 11:30
john_rei7-Jan-07 11:30 
AnswerRe: FIBONACCI CODE Pin
CPallini7-Jan-07 22:12
mveCPallini7-Jan-07 22:12 
I guess you want the sum of all the numbers belonging to the sequence, so:
F = 1
F2 = 1
N = Val(Text1.Text)
X = 1 'X holds the Sum
For M = 2 To N


F2 = F2 + F
X = X + F2
F = F2
R = R + Str(F2) + ","

Next M

Sum.Text = X


I'm assuming the sequence you generated is correct.

Smile | :)


If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.

QuestionFuzzy Matching in Access/VB Pin
DataClean7-Jan-07 5:30
DataClean7-Jan-07 5:30 
AnswerRe: Fuzzy Matching in Access/VB Pin
CPallini7-Jan-07 22:16
mveCPallini7-Jan-07 22:16 
GeneralRe: Fuzzy Matching in Access/VB Pin
DataClean7-Jan-07 23:37
DataClean7-Jan-07 23:37 
GeneralRe: Fuzzy Matching in Access/VB Pin
CPallini7-Jan-07 23:40
mveCPallini7-Jan-07 23:40 
QuestionImage Processing Pin
sumit.mishra7-Jan-07 3:04
sumit.mishra7-Jan-07 3:04 
AnswerRe: Image Processing Pin
Rob Graham7-Jan-07 5:49
Rob Graham7-Jan-07 5:49 
AnswerRe: Image Processing Pin
Sauce!13-Jan-07 2:02
Sauce!13-Jan-07 2:02 
Questionconversion of jpg to data ie. txt Pin
Lowki3-Jan-07 6:04
Lowki3-Jan-07 6:04 
AnswerRe: conversion of jpg to data ie. txt Pin
Ed.Poore3-Jan-07 7:00
Ed.Poore3-Jan-07 7:00 
GeneralRe: conversion of jpg to data ie. txt Pin
Lowki3-Jan-07 23:08
Lowki3-Jan-07 23:08 
AnswerRe: conversion of jpg to data ie. txt Pin
eggsovereasy3-Jan-07 10:45
eggsovereasy3-Jan-07 10:45 
GeneralRe: conversion of jpg to data ie. txt Pin
Lowki3-Jan-07 23:01
Lowki3-Jan-07 23:01 
GeneralRe: conversion of jpg to data ie. txt Pin
Ed.Poore3-Jan-07 23:04
Ed.Poore3-Jan-07 23:04 
GeneralRe: conversion of jpg to data ie. txt Pin
Lowki3-Jan-07 23:20
Lowki3-Jan-07 23:20 
GeneralRe: conversion of jpg to data ie. txt Pin
Ed.Poore3-Jan-07 23:44
Ed.Poore3-Jan-07 23:44 
GeneralRe: conversion of jpg to data ie. txt Pin
Lowki4-Jan-07 0:37
Lowki4-Jan-07 0:37 
GeneralRe: conversion of jpg to data ie. txt Pin
Ed.Poore4-Jan-07 3:36
Ed.Poore4-Jan-07 3:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.