Java Basic- Ôn Luyện Về Vòng Lặp For, While, Do-while Trong Java

Đỗ Minh Quân

2021-01-24 15:52:42

/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package t2008a; import static java.time.Clock.system; import java.util.Scanner; import javax.sound.midi.Soundbank; /** * * @author PC */ public class T2008A { /** * @param args the command line arguments */ public static void main(String[] args) { Scanner input = new Scanner(System.in); System.out.println("Bai 1"); int[] n = new int [10]; for (int i=0;i<10;i++){ System.out.println("nhap phan tu thu" + (i+1) + "la"); n[i] = input.nextInt(); } int sum = 0; for (int i=0;i<10;i++){ sum = sum + n[i]; } System.out.println("tong cac phan tu la"+sum); } }

Từ khóa » Bài Tập Vòng Lặp For Trong Java