“comment convertir c en python” Réponses codées

comment convertir c en python

#include<stdio.h>
int main()
{
    double b1,h1,b2,h2,a1,a2;
    scanf("%lf %lf %lf %lf",&b1,&h1,&b2,&h2);
    a1=(b1*h1)/2;
    a2=(b2*h2)/2;
    if(a1>a2)
        printf("%0.2lf",a1);
    else
        printf("%0.2lf",a2);
}
Brave Bug

comment convertir c en python

#include<stdio.h>
int main()
{
    double b1,h1,b2,h2,a1,a2;
    scanf("%lf %lf %lf %lf",&b1,&h1,&b2,&h2);
    a1=(b1*h1)/2;
    a2=(b2*h2)/2;
    if(a1>a2)
        printf("%0.2lf",a1);
    else
        printf("%0.2lf",a2);
}
Brave Bug

Réponses similaires à “comment convertir c en python”

Questions similaires à “comment convertir c en python”

Plus de réponses similaires à “comment convertir c en python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code