Skip to content

Instantly share code, notes, and snippets.

@lithid
Created August 29, 2013 20:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lithid/6382758 to your computer and use it in GitHub Desktop.
Save lithid/6382758 to your computer and use it in GitHub Desktop.
//Main.java
import javax.swing.JOptionPane;
public class Main {
public static void main(String[] args){
String s;
Secondary f;
f = new Secondary();
f.food();
s = JOptionPane.showInputDialog("Enter fruit desire: ");
f.desire = Double.parseDouble(s);
f.factor = f.desire / f.fruit;
for (int i=0; i<f.mFruitList.length; i++) {
f.mFruitList[i] = f.factor * f.mFruitList[i];
System.out.println(f.mFruitName[i]": " + f.mFruitList[i]);
}
}
}
//Secondary.java
public class Secondary {
public static final APPLE = 0;
public static final BANANA = 1;
public static final ORANGE = 2;
public double fruit, desire, factor;
public double[] mFruitList;
public String[] mFruitName;
public void food(){
mFruitList = new double[3];
mFruitList[APPLE] = 3;
mFruitList[BANANA] = 3;
mFruitList[ORANGE] = 4;
mFruitName = new String[3];
mFruitName[APPLE] = "Apples";
mFruitName[BANANA] = "Bananas";
mFruitName[ORANGE] = "Oranges";
fruit = 10;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment