Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*["'][a-z0-9\-_\!\$]+["']‘: import java.util.Scanner; import static java.lang.System.out; class Taxable { public static void main(String arg[]) { Scanner myScanner = new Scanner(System.in); String fullname; String password = "jackally"; String userinput; char taxable; Purchase aPurchase = new Purchase(); out.print("Customer's full name: "); fullname = myScanner.nextLine(); out.print("Amount: "); aPurchase.amount = myScanner.nextDouble(); // out.print(amount); Source: http://pastebin.com/raw.php?i=78TSJHTg
↧