If this is your product, you can request to edit it here.
"Build, test and deploy!"
Summary:
I use Bamboo for continuous integreation and continuous deployment within my company. I've been able to save so much time by automating steps in bulding, testing, integration and deployment. I highly recommend Bamboo if you are looking for a tool to use for CI/CD.
"Does what it needs to do"
Summary:
Straightforward and easy to navigate. Excellent integration with Bitbucket and Jira. Pipeline-as-code is frustrating. Difficult to share variables between build & deployment projects which is essential for larger companies.
"Great for CI/CD Models"
Summary:
Bamboo is one of the best tools I've found for building CI/CD models. I appreciate that it maintains versioning of implementations. The only qualm I have is the lack of community support.
|
What does this code do?
static void mysteryFunction(int nr, int dr) { if (dr == 0 || nr == 0) { return; } if (dr % nr == 0) { System.out.print("1/" + dr / nr); return; } if (nr % dr == 0) { System.out.print(nr / dr); return; } if (nr > dr) { System.out.print(nr / dr + " + "); mysteryFunction(nr % dr, dr); return; } int n = dr / nr + 1; System.out.print("1/" + n + " + "); mysteryFunction(nr * n - dr, dr * n); } // Driver Code public static void main(String[] args) { int nr = 6, dr = 14; System.out.print("Fraction Representation of " + nr + "/" + dr + " is\n "); mysteryFunction(nr, dr); } }
Programming Language: Java