“wie man C in Python umwandelt” Code-Antworten

wie man C in Python umwandelt

#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

wie man C in Python umwandelt

#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

Ähnliche Antworten wie “wie man C in Python umwandelt”

Fragen ähnlich wie “wie man C in Python umwandelt”

Weitere verwandte Antworten zu “wie man C in Python umwandelt” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen