Re: program logic not right-

2003-01-31 Thread Eri Mendz
> Thus spoke PRADEEP GOEL <[EMAIL PROTECTED]> last [2003-01-31 10:48]: > Dear Senior Programmer Analyst > > did it solves the problem ? > I don't think so . > > there is one very simple logical flow > if ($temp_unit eq 'C' or 'c'){ > should be > if ($temp_unit eq 'C' or $temp_unit eq 'c'){ > that

Re: program logic not right-

2003-01-30 Thread PRADEEP GOEL
om F to C in last print command is well understood. - Original Message - From: "Wagner, David --- Senior Programmer Analyst --- WGO" <[EMAIL PROTECTED]> To: "'Eri Mendz'" <[EMAIL PROTECTED]>; "perl digest" <[EMAIL PROTECTED]> Sent:

Re: program logic not right

2003-01-30 Thread Janek Schleicher
On Thu, 30 Jan 2003 21:58:10 +0300, Eri Mendz wrote: > Have here a temperature conversion program im trying to "perfect" but no > chance, its not working right. The input validation portion is fine, im > satisfied likewise with the conversion to celsius. My problem is > conversion to fahrenheit:

Re: program logic not right

2003-01-30 Thread John W. Krahn
Eri Mendz wrote: > > Good day all, Hello, > Have here a temperature conversion program im trying to "perfect" but no > chance, its not working right. The input validation portion is fine, im > satisfied likewise with the conversion to celsius. My problem is > conversion to fahrenheit: the answe

RE: program logic not right

2003-01-30 Thread Wagner, David --- Senior Programmer Analyst --- WGO
Eri Mendz wrote: > Good day all, > > Have here a temperature conversion program im trying to "perfect" but > no chance, its not working right. The input validation portion is > fine, im satisfied likewise with the conversion to celsius. My > problem is conversion to fahrenheit: the answer is not