diff --git a/learning to be pricise.cpp b/learning to be pricise.cpp new file mode 100644 index 0000000..5111523 --- /dev/null +++ b/learning to be pricise.cpp @@ -0,0 +1,37 @@ +//Initial Template for C++ + + + +#include +using namespace std; + + // } Driver Code Ends +//User function Template for C++ + +void precise(float a, float b) +{ + float c = a/b; + + // cout<>t; + while(t--) + { + float a,b; + cin>>a>>b; //Taking input of a and b in floating types + precise(a,b); + + } + return 0; +} // } Driver Code Ends