If this is your product, you can request to edit it here.
Version Reviewing: 7.0
"Net framworks for applicationusing graphics"
Summary:
Very good program
Version Reviewing: best one
"i liked it so much for using"
Summary:
good for us
Version Reviewing: 4.5
".net 4.5"
Summary:
As I was being a .net developer., I could say the version has substantial improvements to other functional areas such as ASP.NET, Managed Extensibility Framework, and so on. This is a highly compatible, in-place update to the .NET Framework 4. I recommend this framework for some major development using windows or Microsoft platform.
Version Reviewing: Super Stars Tools
"Good and Quality Softwares"
Summary:
.net Framework is quality product and software of Microsoft company. which having used, can create and run the application. the users can download those Software freely.
Version Reviewing: 4.7
"Is adequate to develop integral applications"
Summary:
This framework has improved its features to cover more platforms and environments that the applications are necessary to run. Today, the applications are dynamics and integrals, they need working over several environments. .Net framework has tried to solve this complexity giving a unified model of development. The .Net architecture considers microservices, cloud applications, DevOps, the classics web applications, mobile apps, and other platforms.
Version Reviewing: 4.0
"An Awesome Framework"
Summary:
.Net Framework is really a great tool or technology for software developers from Microsoft. It is very convenient to develop all kind of software applications like windows/desktop, websites, services, web-services etc. It includes all kind of programming mechanisms into one umbrella for different types of application software development which really helps to a great extent for software developers. But one important thing is that the features are not being used in efficient manner, so Microsoft should do something, so that developers will get proper efficient knowledge which will make more popular to this technology. Being Microsoft as one of the giant companies in computer world, it is really fantastic and great achievements to provide new versions of .Net framework from time to time. But there are many applications which are already developed in older versions. And to make the use of newer versions are completely out of scope for the developers, since the customers or owners have the major decision on it because it involves new investments. So I think it is also responsibility of Microsoft that not only to sale the new versions of any products or new products dominantly but also educate, motivate to all the stakeholders for the new versions, particularly important for the developers then only you can get the proper feedback for a product, since these products are technical and technical people only can give more correct feedback than others. Though the tools are having very efficient mechanism but what is the value if those are not efficiently used in proper manner.
"Very good app"
Summary:
We can say that without this tools we cant run.
Version Reviewing: 4
"great to use"
Summary:
very good developing tool
Version Reviewing: 4.5
"Developing web and desktop applications"
Summary:
The most advanced framework for developing web and desktop applications.
Version Reviewing: 4.5
"desktop and web applications that run on Windows"
Summary:
Windows development.The.NET Framework is a comprehensive programming model for building mobile, desktop and web applications that run on Windows
|
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