Question

In: Computer Science

Create an applet that will draw a set of ovals. The user can specify the number...

Create an applet that will draw a set of ovals. The user can specify the number of ovals. submit java code

Solutions

Expert Solution

Below is the required code:-

  1. import java.applet.Applet;
  2. import java.awt.Color;
  3. import java.awt.Graphics;
  4. public class ovalshaper extends Applet{
  5. public void paint(Graphics gr){      
  6. setForeground(Color.blue);   
  7. gr.drawOval(20,20,30,50);         
  8. gr.fillOval(70,20,30,50);   
  9. }
  10. }

Thank you.


Related Solutions

Draw Lewis structures for each of the following compounds. In each case, specify the number of...
Draw Lewis structures for each of the following compounds. In each case, specify the number of valence electrons surrounding the central atom. a) bromine dioxide (BrO2) (Assume the central atom does not contain an expanded octet.) There are ___ valence electrons surrounding the central atom. b) beryllium fluoride (BeF2) There are___ valence electrons surrounding the central atom. c) phosphorus pentabromide (PBr5) There are ___ valence electrons surrounding the central atom.
Create an application that makes the user guess a number. The user must be allowed tries....
Create an application that makes the user guess a number. The user must be allowed tries. You must have a loop, user input (Scanner), and a constructor. (JAVA)
Show: Create an application that allows the user to enter the number of calories and fat...
Show: Create an application that allows the user to enter the number of calories and fat grams in a food. The application should display the percentage of the calories that come from fat. If the calories from fat are less than 30% of the total calories of the food, it should also display a message indicating the food is low in fat. One gram of fat has 9 calories, so: Calories from fat = fat grams *9 The percentage of...
Create a C++ program that will prompt the user to input an integer number and output...
Create a C++ program that will prompt the user to input an integer number and output the corresponding number to its numerical words. (From 0-1000000 only) **Please only use #include <iostream>, switch and if-else statements only and do not use string storing for the conversion in words. Thank you.** **Our class is still discussing on the basics of programming. Please focus only on the basics. Thank you.** Example outputs: Enter a number: 68954 Sixty Eight Thousand Nine Hundred Fifty Four...
Java Programming Create a program that prompts the user for an integer number and searches for...
Java Programming Create a program that prompts the user for an integer number and searches for it within an array of 10 elements. What is the average number of comparisons required to find an element in the array? Your program should print the number of comparisons required to find the number or determine that the number does not exist. Try finding the first and last numbers stored in the array. Run your program several times before computing the average.
Program on Visual Basic, VBA Create an application that lets the user enter a number of...
Program on Visual Basic, VBA Create an application that lets the user enter a number of seconds and produces output according to the following criteria: There are 60 seconds in a minute. If the number of seconds entered by the user is greater than or equal to 60, the program should display the number of minutes in that many seconds. There are 3,600 seconds in an hour. If the number of seconds entered by the user is greater than or...
Conversion of numeral to roman number: Create a FLOWCHART and C++ PROGRAM that prompts the user...
Conversion of numeral to roman number: Create a FLOWCHART and C++ PROGRAM that prompts the user to enter a number (from 1-3000 only) then output the number and its corresponding roman numeral number. ***validate the input (it must be 1-3000 only) SAMPLE OUTPUT: Enter a Number: 0 Number should be from 1-3000 only (Terminated) Enter a Number: -5 Number should be from 1-3000 only (Terminated) Enter a Number: 3500 Number should be from 1-3000 only (Terminated) Enter a Number: 1994...
Time Calculator Create a C++ program that lets the user enter a number of seconds and...
Time Calculator Create a C++ program that lets the user enter a number of seconds and produces output according to the following criteria: • There are 60 seconds in a minute. If the number of seconds entered by the user is greater than or equal to 60, the program should display the number of minutes in that many seconds. • There are 3,600 seconds in an hour. If the number of seconds entered by the user is greater than or...
Fat Percentage Calculator Create a C++ program that allows the user to enter the number of...
Fat Percentage Calculator Create a C++ program that allows the user to enter the number of calories and fat grams in a food. The application should display the percentage of the calories that come from fat. If the calories from fat are less than 30% of the total calories of the food, it should also display a message indicating the food is low in fat. One gram of fat has 9 calories, so: Calories from fat = fat grams *...
Consider the following quantum number sets; determine if they can occur together to specify an orbital....
Consider the following quantum number sets; determine if they can occur together to specify an orbital. If not, indicate which rule has been violated (a) n=2, l=-1, ml = -1 (b) n=3, l=1, ml=0 (c) n=3, l=3, ml=-3 2: (a) Find all possible subshells in n=4 shell and label these subshells. 2(b): How many total orbitals in shell n=4? what is the relationship between the total number of shell and the quantum number n for that shell? Please include step-by-step...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT