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: Sorting a 2dim array / Spreadsheet::WriteExcel

2003-01-30 Thread Janek Schleicher
On Thu, 30 Jan 2003 16:32:04 +, Paul Kraus wrote: > I am dumping rows of an array into an excel file. I would like those > rows to be sorted. If I wanted them to be sorted by the first elements > how would I do it? > > Code > I haven't looked to your code, but sorting a 2 dim array for

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 PRADEEP GOEL
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's all the second one is from F to C in last print command is well understood. - Ori

<    1   2