0% found this document useful (0 votes)
64 views

Java - Io.Bufferedreader Java - Io.Ioexception Java - Io.Inputstreamreader

This document contains code to calculate the area of a circle in Java. It prompts the user to input the radius, handles exceptions if invalid input is provided, calculates the area using the formula πr^2 where r is the radius, and prints out the calculated area. The code demonstrates how to get user input, calculate circle area based on the radius, and output the result.

Uploaded by

Vivek Sh
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
64 views

Java - Io.Bufferedreader Java - Io.Ioexception Java - Io.Inputstreamreader

This document contains code to calculate the area of a circle in Java. It prompts the user to input the radius, handles exceptions if invalid input is provided, calculates the area using the formula πr^2 where r is the radius, and prints out the calculated area. The code demonstrates how to get user input, calculate circle area based on the radius, and output the result.

Uploaded by

Vivek Sh
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24.

25. 26. 27. 28. 29. 30. 31. 32. 33. 34. 35. 36. 37. 38. 39. 40. 41. 42. 43. 44. 45. 46. 47. 48. 49. 50. 51. 52. 53. 54.

/* Calculate Circle Area using Java Example This Calculate Circle Area using Java Example shows how to calculate area of circle using it's radius. */ import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class CalculateCircleAreaExample { public static void main(String[] args) { int radius = 0; System.out.println("Please enter radius of a circle"); try { //get the radius from console BufferedReader br = new BufferedReader(newInputStreamReader(System.in)); radius = Integer.parseInt(br.readLine()); } //if invalid value was entered catch(NumberFormatException ne) { System.out.println("Invalid radius value" + ne); System.exit(0); } catch(IOException ioe) { System.out.println("IO Error :" + ioe); System.exit(0); } /* * Area of a circle is * pi * r * r * where r is a radius of a circle. */ //NOTE : use Math.PI constant to get value of pi double area = Math.PI * radius * radius; System.out.println("Area of a circle is " + area); } } /* Output of Calculate Circle Area using Java Example would be Please enter radius of a circle 19 Area of a circle is 1134.1149479459152 */

You might also like