Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * 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 compito4aif;
- import java.util.Scanner;
- /**
- *
- * @author quartaaif
- */
- public class Calcoli {
- Scanner scan = new Scanner(System.in);
- private int i;//contatore
- private int[] numArr;//array di numeri
- public void Immetti(){//metodo per immettere numeri
- System.out.println("i1mmettere lunghezza array");
- this.numArr = new int[scan.nextInt()];//fa scegliere all'utente la lunghezza dell'array
- System.out.println("inserire i numeri");
- for(i=0;i<this.numArr.length;i++){//ciclo per immettere numeri
- this.numArr[i]=scan.nextInt();//immessione numeri array
- }
- }
- public float MediaPari(){
- float pari=0;//somma pari
- float nmed=0;//numero di numeri sommati
- for(i=0;i<this.numArr.length;i++){
- if(this.numArr[i]%2==0){//se pari veine sommato
- pari+=this.numArr[i];
- nmed++;
- }
- }
- return pari/nmed;//ritorna la media senza salvare
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement