1 solutions

  • 0
    @ 2025-11-5 20:11:46

    C :

    #include<stdio.h>
    
    int main()
    {
    	float a,b,c,d;
    	a=1.47;
    	b=32.54;
        c=32.1;
    	d=a*(b-c);
    	printf("%.4f",d);
    	return 0;
    }
    

    C++ :

    #include<stdio.h>
    
    int main()
    {
    	float a,b,c,d;
    	a=1.47;
    	b=32.54;
    	c=32.1;
    	d=a*(b-c);
    	printf("%.4f\n",d);
    	return 0;
    }
    

    Pascal :

    begin
      writeln('0.6468');
    end.
    
    
    • 1

    Information

    ID
    20116
    Time
    1000ms
    Memory
    128MiB
    Difficulty
    (None)
    Tags
    # Submissions
    0
    Accepted
    0
    Uploaded By