我撰写了一份 Java货币兑换方案,其中我为用户设计了3种外汇,从美元改为美元。 当用户投入“000”时,我想打破<代码>。
import java.lang.StringBuffer;
import java.io.IOException;
class Project6_5
{
public static void main(String args[])
{
int usa, amount, stop;
System.out.println("This is a Currencies Exchange program");
System.out.println("From US Dollar to Foreign Currency"); //Explaining to user
stop = 0;
while(true/*stop!=999*/)
{
try
{
System.out.print("What is your amount of US dollars?");
System.out.println(" 000 to end Program");
usa = Integer.parseInt(GCS());
System.out.println("What currency would you prefer?");
System.out.println("Avaliable currencies are:");
System.out.println("1 for Japanese Yen, 2 for Taiwanese Dollar, 3 for Euro");
amount = Integer.parseInt(GCS());
if( amount == 1 )
{
System.out.println("Exchange rate");
System.out.println("80.75 Yen for 1 Dollar");
System.out.println(" ");
System.out.println("Your Yen is "+ usa*80.75);
System.out.println("________________________________________");
}
if( amount == 2 )
{
System.out.println("Exchange rate");
System.out.println("30.125 NTD for 1 Dollar");
System.out.println(" ");
System.out.println("Your NTD is "+ usa*30.125);
System.out.println("________________________________________");
}
if( amount == 3 )
{
System.out.println("Exchange rate");
System.out.println("1.4201 Euro for 1 Dollar");
System.out.println(" ");
System.out.println("Your Euro is "+ usa*1.4201);
System.out.println("________________________________________");
}
if(usa==000)
{
System.out.println("End Program");
return;
}
}
catch(NumberFormatException NFE) //catch if integer s not number
{
System.err.println("ERROR");
System.err.println("Type in Integer only");
}
catch(Exception E) //catch Genaral Error
{
System.err.println("ERROR");
}
}
}//end of Main
public static String GCS() //GetConsoleString User-Input
{
int noMoreInput = -1;
char enterKeyHit =
;
int InputChar;
StringBuffer InputBuffer = new StringBuffer(100);
try
{
InputChar = System.in.read();
while(InputChar != noMoreInput)
{
if((char)InputChar != enterKeyHit)
{
InputBuffer.append((char) InputChar);
}
else
{
InputBuffer.setLength(InputBuffer.length()-1);
break;
}
InputChar = System.in.read();
}
}//close Try(21)
catch(IOException IOX)
{
System.err.println(IOX);
}
return InputBuffer.toString();
}//end of GCS
}