Hallo easy-coding Team,
bin totaler bluej noob und wollte wissen wie ich bei diesem projekt:
Alles anzeigen
die Parameter à la void verändern kann.
also nachdem man auf new Cyclinder geklickt hat.
z.B im terminal fenster neuen Radius eingeben.
Bin für jede Hilfe dankbar.
Für die: die das gerne in Farbe sehen wollen hier:
bin totaler bluej noob und wollte wissen wie ich bei diesem projekt:
Quellcode
- /**
- * Write a description of class Cylinder here.
- *
- * @author (Jens)
- * @version (0.001)
- */
- public class Cylinder
- {
- // instance variables
- // radius = radius of a Cyclinder
- private double radius;
- private double h;
- private double volume;
- private double shell;
- /**
- * Constructor for objects of class Cylinder
- */
- public Cylinder()
- {
- // initialise instance variables
- this.radius = 2.D;
- this.h = 4.D;
- }
- /**
- * This method computes the volume ofa Cyclinder
- *
- * @param no param
- * @return return volume of a Cyclinder
- */
- public double computeVolume ()
- {
- double Volume = Math.PI * this.radius * this.radius * this.h;
- return Volume;
- }
- /**
- * This methods computes the surface a Cyclinder
- * @param no parameter
- * @return return volume of a Cyclinder
- */
- public double computeSurface(){
- double surface = 2.D * Math.PI * this.radius * (this.h + this.radius) ;
- return surface;
- }
- /**
- * This methods computes the shell a Cyclinder
- * @param no parameter
- * @return return volume of a Cyclinder
- */
- public double computeShell (){
- double shell = 2.D * Math.PI * this.radius *this.h;
- return shell;
- }
- }
die Parameter à la void verändern kann.
also nachdem man auf new Cyclinder geklickt hat.
z.B im terminal fenster neuen Radius eingeben.
Bin für jede Hilfe dankbar.
Für die: die das gerne in Farbe sehen wollen hier: