Exercice 10
Exercice 10
Exercice 10
Exercice 10
by Le chemin vers la programmation - mai 02, 2021
Algorithme
Variables Prix_HT,Prix_TTC: réels
Debut
Ecrire(" Entrer le montant HT:")
Lire(Prix_HT)
******** En C ********
#include <stdio.h>
int main() {
float Prix_HT , Prix_TTC ;
printf(" Entrer le montant HT:");
scanf("%f", &Prix_HT);
Prix_TTC = Prix_HT + Prix_HT*0.2 ;
if ( Prix_TTC > 200 ) {
Prix_TTC = Prix_TTC - Prix_TTC*0.15;
printf("le montant TTC est: %f
",Prix_TTC);
}else{
printf("le montant TTC est: %f ",
Prix_TTC);
}
return 0;
}
#include <iostream>
using namespace std;
int main() {
float Prix_HT , Prix_TTC ;
cout<<" Entrer le montant HT:";
cin>>Prix_HT;
Prix_TTC = Prix_HT + Prix_HT*0.2 ;
if ( Prix_TTC > 200 ) {
Prix_TTC = Prix_TTC - Prix_TTC*0.15;
cout<<"le montant TTC est: "<<Prix_TTC;
}else{
cout<<"le montant TTC est: "<<Prix_TTC;
}
return 0;
}
import java.util.Scanner;
class Main {
public static void main(String[] args) {
Scanner sc = new Scanner (System.in);
System.out.print("Entrerle montant
HT:");
double Prix_HT = sc.nextFloat();
ENREGISTRER UN COMMENTAIRE
0 Commentaires
En savoir plus
SOCIAL PLUGIN
CATEGORIES
Home Privacy Policy Contact Us
Copyright © 2023 Coode Maroc