Create a Java program that generates the drawing of a circle on the screen, dividing it into 360 equidistant points. Use the provided formula below to calculate radians. To position each point on the circle, you can use the angle value and calculate the corresponding x and y coordinates to draw the circle.
The necessary formula is:
radians = angle * PI / 180
Not required input
XXXXXXXX XX XX XX XX XX XX X X X X X X X X X X X X X X X X X X X X XX XX XX XX XX XX XXXXXXXX X
public class CircleOnScreen { public static void main(String[] args) { double x, y; double radius; for (int i = 0; i < 360; i += 5) { radius = i * Math.PI / 180.0; x = 35 + 8 * Math.cos(radius); y = 10 + 8 * Math.sin(radius); // Round the coordinates to integers int posX = (int) Math.round(x); int posY = (int) Math.round(y); for (int j = 1; j < posX; j++) { System.out.print(" "); } for (int j = posX; j <= posX; j++) { for (int k = 1; k < posY; k++) { System.out.print(" "); } System.out.println("X"); } } } }
Click here to view the exercise solution
Share it on your social media and challenge your friends to solve programming problems. Together, we can learn and grow.
The code has been successfully copied to the clipboard.
Continue improving your Java programming skills with our selection of practical exercises from the lesson. Click on Practice and challenge your knowledge!
Create a Java program that prompts the user for 5 integers to store them in an integer array and displays them in reverse order.
Create a program in Java that serves to search an array of integer values.
Write a Java program that prompts the user to enter 10 integers. Then, store these numbers in an integer array and display only the even numbers.
Write a Java program that prompts the user to enter 10 real numbers and displays the arithmetic mean of positive and negative numbers.
Create a Java program that mimics the functionality of the banner command on Unix.
Create a Java program that prompts the user for 10 integers and sorts them using the bubble sort algorithm.
Create a Java program that prompts the user to input the scores of 10 students, divided into 2 groups of 5 students each.
Create a Java program that declares a two-dimensional character array of 20 rows by 70 columns and stores the letter 'X' to display on the screen.
Java Program for Mathematical Statistics: Store, Analyze, and Visualize Data. Enhance Your Skills!
Create a Java program that draws a 360 screen circumference.
Practice with exercises in Java that use arrays of different dimensions to store the information.
Free programming course with practical exercises and solutions in C#. Start learning right now!
Take your Exercises C# lessons everywhere with our Android app. Download it now from Google Play
Own and third party cookies to improve our services. If you go on surfing, we will consider you accepting its use.