Package td6

Source Code of td6.SommeV2

package td6;
import java.util.Scanner;
public class SommeV2 {
    public static void main(String[] args) {
        boolean encore;
        int valeur;
        int somme = 0;
        Scanner sc = new Scanner(System.in)
        do{
            valeur = sc.nextInt();
            somme = somme + valeur;
            encore = sc.nextBoolean();
        }while(encore);
        System.out.println(somme);
    }
}

       
TOP

Related Classes of td6.SommeV2

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.