私はJavaを学んでいる初心者のプログラマーで、宿題は完了していますが、もっときちんとしたいと思っています。次の印刷方法を 1 つに結合できるかどうか、少なくともキログラムからポンドへの方法とポンドからキログラムへの方法を 1 つに結合できるかどうかを知りたいと思いました。
if ステートメントやループよりも高度なものは使用できないことに注意してください。
これは私の初めての投稿であり、すべての回答者に適切な情報を提供することを確認したいので、Weight Conversion Java ファイルをここにアップロードしました: Weight Conversion Java file。
コードを単純化する方法や、より良いコード エチケットに従う方法に関するその他のアドバイスも歓迎します。
印刷ステートメントは次のとおりです。
/**
* This method below prints the calculations calculateKG and calculateLBS
*/
public static void printRESULTS1( double dResult1, double dResult2){
// Prints the result of Pounds to Kilograms
System.out.print(dResult1 + " pounds is " + dResult2 + " kilograms.");
}// end method printRESULTS1
/**
* This method below prints the calculations calculateKG and calculateLBS
*/
public static void printRESULTS2( double dResult1, double dResult2){
// Prints the result of Pounds to Kilograms
System.out.print( dResult1 + " kilograms is " + dResult2 + " pounds");
}// end method printRESULTS2
/**
* This method below prints the calculations calculateOZ and calculateLBS
*/
public static void printRESULTS3( double dResultOZ, double dResultLBS){
// Prints the result of Pounds to Kilograms
System.out.print( dResultOZ + " ounces is " + dResultLBS + " pounds");
}// end method printRESULTS3
/**
* This method below prints the calculations calculateOZ and calculateLBS
*/
public static void printRESULTS4( double dResultLBS, double dResultOZ){
// Prints the result of Pounds to Kilograms
System.out.print( dResultLBS + " pounds is " + dResultOZ + " ounces ");
}// end method printRESULTS4