Click here to Skip to main content
15,924,507 members
Home / Discussions / Algorithms
   

Algorithms

 
QuestionNeed help with "!" sign in postfix parser Pin
thailehuy8-Jan-07 15:23
thailehuy8-Jan-07 15:23 
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 
Hi All,
i try to create the fibonacci code ( 0,1,1,2,3,5,8,13,....etc) in vb6, but i feel dificulty to get the amount from entire fibonaci number. please help me. the amount is in sum.text

Dim N As Long
Dim X As Long
Dim F As Long
Dim F2 As Long
Dim M As Long
Dim R As String
F = 1
F2 = 1
N = Val(Text1.Text)

For M = 2 To N
X = F2

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

Next M

sum.Text = F2 + f
Text3.Text = "1," + R

End SubLaugh | :laugh:

please help me.

AnswerRe: FIBONACCI CODE Pin
CPallini7-Jan-07 22:12
mveCPallini7-Jan-07 22:12 
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 

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.