1 solutions

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

    C :

    #include<stdio.h>
    
    int main()
    {
    	float a,b,c;
    	a=9;
    	b=4;
    	c=a/b;
    	printf("%.2f\n",c);
    	return 0;
    }
    

    C++ :

    #include<stdio.h>
    
    int main()
    {
        float a,b,c;
    	a=9;
    	b=4;
    	c=a/b;
    	printf("%.2f\n",c);
    	return 0;
    }
    

    Pascal :

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

    Information

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