これは私がこれまでに行ったプログラムです。私はレジ係に価格を入力し、ペットの場合はyまたはnを入力するように依頼することになっています。次に、5つ以上のアイテムがある場合、メソッドは割引を計算することになっています。私が持っているプログラムは、割引方法の返品データを除いて機能しています。
エラーは68です:error; cannot return a value from method whose result type is void.
なぜデータが無効なのか混乱しています。ステートメントを取り出すとreturn discount;
、プログラムはエラーなしでコンパイルされます。
import javax.swing.JOptionPane;
public class Assignment4
{
public static void main (String[] args)
{
double[] prices = new double[1000];
boolean[] isPet = new boolean[1000];
double enterPrice = 0;
int i = 0;
String yesPet = "Y";
int nItems = 0;
do
{
String input = JOptionPane.showInputDialog("Enter the price for the item: ");
enterPrice = Integer.parseInt (input);
prices[i] = enterPrice;
String petOrNo = JOptionPane.showInputDialog("Is this item a pet? Enter Y for pet and N for not pet.");
if (petOrNo.equalsIgnoreCase(yesPet))
{
isPet[i] = true;
}
else
{
isPet[i] = false;
}
i = i+1;
nItems = nItems + 1;
} while (enterPrice != -1);
//System.out.println(nItems);
}
public static void discount(double[] prices, boolean[] isPet, int nItems)
{
boolean found = false;
double[] discount = new double[nItems];
if (nItems > 6)
{
for (int i = 0; i < nItems; i++)
{
if (isPet[i] = true)
{
found = true;
break;
}
}
if (found = true)
{
for (int x = 0; x < nItems; x++)
{
if (isPet[x] = false)
{
int n = 0;
prices[x] = discount[n];
n = n + 1;
}
}
}
}
return discount;
}
}