1 条题解

  • 0
    @ 2024-12-24 9:59:27

    C :

    #include<stdio.h>
    main()
    {
    	float n,m,z,y,x;
    	float result;
    	scanf("%f",&n);
    	while(n--)
    	{
    		scanf("%f%f%f%f", &m, &x, &y, &z);
    		result=x*m/(y-x)*z;
    		printf("%.2f\n",result);
    	}
    } 
    

    C++ :

    #include <stdio.h> 
    int main() 
    { 
        int n , x ,m , y ,z; 
        double length,chaju,time; 
        scanf("%d",&n); 
        while(n--) 
        { 
            scanf("%d%d%d%d",&m,&x,&y,&z); 
            chaju = x * m ; 
            time = chaju / (y-x); 
            length = z * time ; 
            printf("%.2f\n",length); 
        } 
    } 
    
    • 1

    信息

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