第一个是:
import javaxswing;
public class Test{
public static void main( String args[]){
String input = JOptionPaneshowInputDialog("请输入一个时间:");
int time = IntegerparseInt(input);
int hour = time / 60;
int minute = (time % 60);
JOptionPaneshowMessageDialog(null,hour+"小时"+minute+"分钟");
Systemexit( 0 );
}
}
直接复制粘贴。
把这个保存为Testjava,然后编译。注意大小写。
第二个是:
import javaxswing;
public class Test{
public static void main( String args[]){
String input = JOptionPaneshowInputDialog("请输入工作每小时的报酬:");
int pay = IntegerparseInt(input);
input = JOptionPaneshowInputDialog("请输入工作小时数:");
int hour = IntegerparseInt(input);
input = JOptionPaneshowInputDialog("请输入税率(000):");
float rate = FloatparseFloat(input);
String output;
output = "每小时工资:" + pay +
"\n工作小时数:" + hour +
"\n总收入:" + (pay hour) +
"\n缴税金额:" + (payhourrate) +
"\n净利润:" + (payhour(1-rate));
JOptionPaneshowMessageDialog(null,output);
Systemexit( 0 );
}
}
这程序中在输入税率时不以%5输入 ,而是以005的形式输入。因为我还没有找到能把%5转换成float型数的函数。所以这一点很抱歉。望谅解。^_^
同样的把这个保存成Testjava即可编译。
以上就是关于java 小程序全部的内容,包括:java 小程序、、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)