If this is your product, you can request to edit it here.
Version Reviewing: good
"suitable tool"
Summary:
Github is good and required online tool for the consumers it is best code hosting platform.
Version Reviewing: 2.6.1
"Good Tool"
Summary:
We use github in our company and it suit well for startups. It has an easy user interface, basic features like branching. releases, tags, wiki. i you want to do more sw project management than you have to buy some extra plugins.
"No excuse to not make an account"
Summary:
I'm always using Github at school, work, and at home. Having a github account is a must have if you're a developer. It's widely used, has a beautiful and clean UI for both their application and website, and it's incredibly useful. Version control is super important if you're a software developer. They also provide free web hosting for your online portfolio. IF YOU DON'T HAVE A GITHUB ACCOUNT, GO MAKE ONE NOW. You won't regret it.
|
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