我是一名正在学习 Java 的新手程序员,虽然我的作业完成了,但我想让它更整洁。我想知道我是否可以将以下打印方法合二为一,至少将公斤到磅和磅到千克方法合二为一。
注意,我不能使用比 if 语句和循环更高级的东西。
因为这是我第一次发帖,我想确保为所有回答者提供足够的信息,所以我已将我的体重转换 Java 文件上传到此处:体重转换 Java 文件。
关于如何简化代码或遵循更好的代码礼仪的任何其他建议也受到欢迎。
以下是打印语句:
/**
* 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