⑴ 判斷java list<int>集合里有沒有數據怎麼判斷
你好,先提醒一下 list<int>寫法兆談是錯誤的,應為:List<Integer>
假如我們有集合:List<Integer>沒螞 list = new ArrayList<Integer>() ;
你可以使族察碰用list.size() 如果這個值為0那麼就說明這個集合沒有數據。
⑵ 用JAVA數組任意輸入5個數,判斷這5個數是否有重復數據存在. 。。。急用啊 謝了啊
import java.io.*;
import java.util.*;
class a{
public static void main(String []args){
int i, j;
int[] a= new int[5];
String msg="無重復數據存在!";
Scanner sc=new Scanner(System.in);
System.out.println("請任意輸入5個整數:");
for(i=0;i<5;i++){
a[i] =sc.nextInt();
}
for(i=0;i<5;i++){
for(j=i+1; j<5;j++){
if(a[i]==a[j]){
msg="有重復數據存在!";
break;
}
}
}
System.out.println(msg);
}
}
絕對高人回答!!請採納!!
⑶ 用數組的方法輸入一個數判斷此數是否在數組內用JAVA怎麼做,急用!!!!!!!!!!!!!
import java.util.Scanner; //定義輸入類;
public class Main {
public static void main(String[] args) {
Scanner Sc = new Scanner(System.in);//掃描鍵入信息;
int[] shuZu=new int[]{8,4,2,1,23,344,12};//定義數組;
System.out.print("請輸入一個數:");
int jianRu=Sc.nextInt(); //獲取鍵入信息;
for (int i= 0; i<shuZu.length ; i++) {
if (jianRu == shuZu[j]) {
System.out.println("恭喜你,猜對了,該數存在於該數組內");
break;} //鍵入數與數組數逐個比較,如果相等,輸出文字後,中止,如果不相等進入下一個次循環。
if(i==shuZu.length-1&&jianRu!=shuZu[i]){
System.out.println("抱歉,該數不存在於該數組"); //進行判斷,此次判斷與數組中最後一個數作比較,輸出文字
} }
⑷ 用java訪問資料庫 判斷數據是否存在
sql方面的寫法:
select count(*) from 訂單表 where 訂單號='你傳進來的經單號'
java代碼中返回這個count
if(count >= 1) 說明訂單已存在!!!!
--希望能幫助到你!