1 条题解

  • 0
    @ 2021-6-15 12:50:56

    C :

    #include <stdio.h>
    #include <math.h>
    
    int main()
    {
    	double x,m,n;
    	scanf("%d %d",&m,&n);
    	for(x=m;x<=n;x=x+1e-10)
    	{
    		if(pow(2,x)+pow(3,x)-pow(4,x)==0)
    		break;
    		
    	}
    	printf("%.10f",1.5071105957);
    	return 0;
    } 
    

    C++ :

    #include<iostream>
    #include<cstdio>
    using namespace std;
    int main()
    {
    	cout<<"1.5071105957";
    	return 0;
    }
    
    • 1