輸入四個整數,輸出其中的最小值。


 

代碼:

 1 import java.util.*;  2 public class Main {  3     public static void main (String [] args) {  4         Scanner s=new Scanner(System.in);  5         int m=s.nextInt();  6         for(int i=1;i<4;i++) {  7             int n=s.nextInt();  8             if(m>n) {  9                 m=n; 10  } 11  } 12  System.out.println(m); 13  } 14 }

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM