これは私のコードです:
public class Pizza {
public static void main(String[] args) {
int orderDone = 1;
//declare variables
while(orderDone == 1){
int done = 1;
double total2 = 0;
final int DELIVERY_COST = 3;
double pizzaPrice = 8.50;
String customerAddress = null;
String customerNumber = null;
int pizzaQuantity = 0;
//my code
orderDone = readInt("Would you like to make another order? (0 - yes 1 - no) ");
if(orderDone == 1){
orderDone = 2;
} else {
done = 0;
}