实验五:任意输入10个int类型数据,排序输出,再找出素数

Posted baiyunchao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实验五:任意输入10个int类型数据,排序输出,再找出素数相关的知识,希望对你有一定的参考价值。

实验内容:任意输入10个int类型数据,排序输出,再找出素数

实验程序

public class bai {

public static void main(String[] args) {

Scanner s = new Scanner(System.in);

int temp;

int[] a = new int[10];

for (int i = 0; i < 10; i++) {

a[i] = s.nextInt();

}

for (int i = 0; i < 10; i++) {

for (int j = i + 1; j < 10; j++) {

if (a[i] > a[j]) {

temp = a[i];

a[i] = a[j];

a[j] = temp;

}

}

}

for (int i = 0; i < 10; i++) {

System.out.print(a[i] + " ");

}

System.out.println(" ");

System.out.print("素数是:")

实验结果

1 9 3 6 8 10 4 7

1 3 4 6 7 8 9 10

素数是:3 5 7

三.实验心得

对于素数的输出出现问题,不知道需要满足哪些条件,程序编写出错的地方较多,修改花了一些时间

以上是关于实验五:任意输入10个int类型数据,排序输出,再找出素数的主要内容,如果未能解决你的问题,请参考以下文章

实验五:任意输入10个int类型数据,排序输出,再找出素数

实验五:任意输入10个int类型数据,排序输出,再找出素数

任意输入10个int类型数据,排序输出,找出素数

c语言中怎样让一个有10个元素的数组输出5个元素后换行后再输出另外五个函数

c语言,任意输入一个五位正整数,逆序输出每一位上的数

任意输入5个整数,利用冒泡排序法排序(从大到小)