--- loncom/homework/caparesponse/caparesponse.pm 2002/09/30 18:32:45 1.61 +++ loncom/homework/caparesponse/caparesponse.pm 2002/10/01 14:10:44 1.62 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # caparesponse definition # -# $Id: caparesponse.pm,v 1.61 2002/09/30 18:32:45 sakharuk Exp $ +# $Id: caparesponse.pm,v 1.62 2002/10/01 14:10:44 sakharuk Exp $ # # Copyright Michigan State University Board of Trustees # @@ -225,13 +225,23 @@ sub end_numericalresponse { if ($target eq 'web') { $result.= '
'.$alphabet[$ind].': '.$ans.' | '; + $ans = sprintf('%.'.$formats[0],$bubbles_values[$ind]); } else { - my $ans = sprintf('%.'.'d',$bubbles_values[$ind]); - $result.=''.$alphabet[$ind].': '.$ans.' | '; + my $badans = $bubbles_values[$ind]; + my $format = ''; + #What is the number? (integer,decimal,floating point) + if ($badans=~/^(\d*\.?\d*)(E|e)(\d*)$/) { + $format = 'e'.$2; + } elsif ($badans=~/^(\d*)\.(\d*)$/) { + $format = '4f'; + } elsif ($badans=~/^(\d*)$/) { + $format = 'd'; + } + $ans = sprintf('%.'.$format,$bubbles_values[$ind]); } + $result.=''.$alphabet[$ind].': '.$ans.' | '; } $result.='