哪位高手帮忙解决一下java 编程问题
1.从键盘上输入一个整数,判断能否被5和6整除,再判断能否被5或6整除。2.生成100个0-100之间的随机整数保存在数组中,并求其中的最大和最小值。3.继承Thread...
1.从键盘上输入一个整数,判断能否被5和6整除,再判断能否被5或6整除。
2.生成100个0-100之间的随机整数保存在数组中,并求其中的最大和最小值。
3.继承Thread类定义线程类A,计算并输出1-100内的所有奇数,继承Thread类定义线程类B,输出1000个0-0.9之间的随机浮点数。创建A和B的对象,并让这两个对象交替运行。
4.创建一个数据文件a.txt,并通过FileWriter对象向其输出整数1-100。 展开
2.生成100个0-100之间的随机整数保存在数组中,并求其中的最大和最小值。
3.继承Thread类定义线程类A,计算并输出1-100内的所有奇数,继承Thread类定义线程类B,输出1000个0-0.9之间的随机浮点数。创建A和B的对象,并让这两个对象交替运行。
4.创建一个数据文件a.txt,并通过FileWriter对象向其输出整数1-100。 展开
2个回答
展开全部
1。
import java.util.Scanner;
class Test{
public static void main(String[] args){
Scanner scanner = new Scanner(System.in);
int num = scanner.nextInt();
if (num % 5 == 0 && num % 6 == 0){
System.out.println(num + "能被5和6整除");
}
if (num % 5 == 0){
System.out.println(num + "能被5整除");
}
if (num % 6 == 0){
System.out.println(num + "能被6整除");
}
}
}
2。
class Test{
public static void main(String[] args){
int arrRandom[] = new int[100];
for (int i=0;i<100;i++){
arrRandom[i] = (int)(Math.random()*100+1);
System.out.print(arrRandom[i] + " ");
}
System.out.println();
int max = Integer.MIN_VALUE;
int min = Integer.MAX_VALUE;
for (int i=0;i<100;i++){
if (max<=arrRandom[i]) max = arrRandom[i];
if (min>=arrRandom[i]) min = arrRandom[i];
}
System.out.println("最小值:" + min);
System.out.println("最大值:" + max);
}
}
3。
class Test{
public static void main(String[] args){
new A().start();
new B().start();
}
}
class A extends Thread{
public void run(){
for (int i=1;i<100;i+=2){
System.out.println("In A:" + i);
try {
sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}
class B extends Thread{
public void run(){
for (int i=0;i<1000;i++){
System.out.println("In B:" + (float)(Math.random()*0.9));
try {
sleep(100);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}
4。
import java.io.File;
import java.io.FileWriter;
class Test{
public static void main(String[] args) throws Exception{
FileWriter writer = new FileWriter(new File("a.txt"));
for (int i=1;i<=100;i++){
writer.write((i + "\n").toCharArray());
}
writer.flush();
writer.close();
}
}
import java.util.Scanner;
class Test{
public static void main(String[] args){
Scanner scanner = new Scanner(System.in);
int num = scanner.nextInt();
if (num % 5 == 0 && num % 6 == 0){
System.out.println(num + "能被5和6整除");
}
if (num % 5 == 0){
System.out.println(num + "能被5整除");
}
if (num % 6 == 0){
System.out.println(num + "能被6整除");
}
}
}
2。
class Test{
public static void main(String[] args){
int arrRandom[] = new int[100];
for (int i=0;i<100;i++){
arrRandom[i] = (int)(Math.random()*100+1);
System.out.print(arrRandom[i] + " ");
}
System.out.println();
int max = Integer.MIN_VALUE;
int min = Integer.MAX_VALUE;
for (int i=0;i<100;i++){
if (max<=arrRandom[i]) max = arrRandom[i];
if (min>=arrRandom[i]) min = arrRandom[i];
}
System.out.println("最小值:" + min);
System.out.println("最大值:" + max);
}
}
3。
class Test{
public static void main(String[] args){
new A().start();
new B().start();
}
}
class A extends Thread{
public void run(){
for (int i=1;i<100;i+=2){
System.out.println("In A:" + i);
try {
sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}
class B extends Thread{
public void run(){
for (int i=0;i<1000;i++){
System.out.println("In B:" + (float)(Math.random()*0.9));
try {
sleep(100);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}
4。
import java.io.File;
import java.io.FileWriter;
class Test{
public static void main(String[] args) throws Exception{
FileWriter writer = new FileWriter(new File("a.txt"));
for (int i=1;i<=100;i++){
writer.write((i + "\n").toCharArray());
}
writer.flush();
writer.close();
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询