16 lines
292 B
C++
16 lines
292 B
C++
#include "tva.h"
|
|
|
|
float tva(
|
|
float prixHTUnit,
|
|
int nbArticles,
|
|
float tauxTVAPourcent
|
|
) {
|
|
|
|
float montantTVA;
|
|
float prixTotalTTC;
|
|
|
|
montantTVA = prixHTUnit * tauxTVAPourcent / 100;
|
|
prixTotalTTC = nbArticles * (prixHTUnit + montantTVA);
|
|
|
|
return prixTotalTTC;
|
|
} |