Prendere un dato in input ed usarlo in più sub-routine

di il
15 risposte

15 Risposte - Pagina 2

  • Re: Prendere un dato in input ed usarlo in più sub-routine

    Queste possono essere scritte semplicemente così
    
    double tassoSem(double n1)
    {
      return(100.0 * (pow((1+n1), (0.5))-1));
    }
    double tassoQuad(double n1)
    {
       return(100.0 * (pow((1 + n1), (1.0/3.0))-1));
    }
    
Devi accedere o registrarti per scrivere nel forum
15 risposte