1 条题解

  • 0
    @ 2025-11-29 12:35:42

    C :

    #include <stdio.h>
    #include <stdlib.h>
    #include <math.h>
    int main()
    {
        //printf("Please input x and y:\n");
        float x,y;
        scanf("%f,%f",&x,&y);
        printf("Result=%.2f\n",(pow(x,2)+pow(y,2)));
        return 0;
    }
    
    • 1

    信息

    ID
    80
    时间
    1000ms
    内存
    128MiB
    难度
    (无)
    标签
    递交数
    0
    已通过
    0
    上传者