Posts

Showing posts from April, 2021

Fraction To Decimal

#include   <iostream> #include   <sstream> using   namespace   std ; string   frac_to_deci ( int   num ,  int   den ) {      float   div ;      div  =  float ( num ) /  den ;      stringstream   sso ;      sso   <<   div ;      string   str_div ;      sso   >>   str_div ;      string   final_str ;      for  ( int   i  =  0 ;  i  <  str_div . length ();  i ++)     {          final_str   +=   str_div [ i ] ;          if  ( str_div [ i ]  ==  '.' )         {         ...