博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java的一些程序
阅读量:6663 次
发布时间:2019-06-25

本文共 1424 字,大约阅读时间需要 4 分钟。

1、文件读取并打印

import java.io.*;

public class readandprint{
//*********Found********
public static void main(String args[]) throws Exception{
long filePoint = 0 ;
String s;
RandomAccessFile file = new RandomAccessFile("D:\\javaceshu\\readandprint.java","r");
long fileLength = file.length();
while (filePoint<fileLength){
//*********Found********
s = file.readLine();
System.out.println(s); 
filePoint = file.getFilePointer();
                            }
file.close();
    }
}

2、图形程序显示乘法

import javax.swing.JOptionPane;

public class Java_1 {
public static void main( String args[] ) {
int x, y, result;
String xVal, yVal;
xVal = JOptionPane.showInputDialog( "输入第1个整数:" );
yVal = JOptionPane.showInputDialog( "输入第2个整数:" );
//*********Found********
x = Integer.parseInt(xVal);
y = Integer.parseInt( yVal );
result = x * y;
//*********Found********
JOptionPane.showMessageDialog( null, "两个数的积: " + result );
System.exit( 0 );
}
}

3、从命令行参数输入 java_24_3 7 (先编译完后)会显示7的阶乘是5040

public class _24_3{

public static void main(String[] args){
String num;
if(args.length > 0)
//*********Found********
num =args[0];
else
num = "5";
//*********Found********
int input = Integer.parseInt(num);
int result = Java_3(input);
System.out.println(input+ " 的阶乘是 "+ result);
}
public static int Java_3(int x)
{
if( x < 0 )
return 0;
int fact = 1;
while(x > 1)
{
//*********Found********
fact = fact * x;
x = x-1;
}
return fact;
}

转载于:https://www.cnblogs.com/bluewelkin/p/3579906.html

你可能感兴趣的文章
Oracle数据库—— PL/SQL进阶编程
查看>>
开源项目剖析之apache-common-pool
查看>>
使用target打开的iframe 获取src的问题
查看>>
Solve one floodlight install problem
查看>>
读Kafka Consumer源码
查看>>
java多线程问题之同步器CyclicBarrier
查看>>
后端http缓存原理
查看>>
Off-heap Memory in Apache Flink and the curious JIT compiler
查看>>
总结的常用方法
查看>>
hibernate _HQL多表语法详解
查看>>
运维圈顶级大会SREcon现场报道,解读SRE 2017年动向
查看>>
Eric Evans:DDD还未结束!
查看>>
Linux 先行者 Fleming:二十多年的开源技术人生,要从一个 Bug 说起
查看>>
兔展雷宗民:小团队的基础设施建设之路
查看>>
创新学习模式天猫精灵会让“熊孩子”成为未来的头脑王者吗?
查看>>
春节期间辽宁对53个国家人员实行144小时过境免签
查看>>
中国8省区文物机构联办《万里茶道》特展
查看>>
齐家网获2018百度品牌数字资产榜“最具价值家装平台”
查看>>
MySQL架构学习回顾
查看>>
海信互联网电视激活用户突破4000万 将上线海外VIDAA AI系统
查看>>