第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

在java中乘以arraylist值

在java中乘以arraylist值

天涯盡頭無女友 2022-12-15 11:01:16
我輸入一個(gè)像 1234 這樣的數(shù)字。我需要偶數(shù)位置值和奇數(shù)位置值,并且我在 arraylist 中存儲(chǔ)了偶數(shù)位置 arraylist 值是 2 和 4。在奇數(shù) arraylist 值是 1 和 3 它都工作正常。但是當(dāng)我乘法時(shí)2 和 4 的 arraylist 值我得到 2600 。請幫忙import java.util.*;public class list {public static void main(String[] args) {        Scanner sc = new Scanner(System.in);        List<Character> list1 = new ArrayList<>();        List<Character> list2 = new ArrayList<>();        System.out.print("Enter Distance ");        String no = sc.next();        for(int i = 0 ; i < no.length() ; i++){            if(i % 2 != 0){                list1.add(no.charAt(i));            }else{                list2.add(no.charAt(i));            }        }          for (char c : list1 ) {            System.out.println(c);          }        int tot = 1;        for (int i=0; i < list1.size() ; i++ ) {            tot = tot * list1.get(i);        }        System.out.print(tot);    }}
查看完整描述

3 回答

?
守著一只汪

TA貢獻(xiàn)1872條經(jīng)驗(yàn) 獲得超4個(gè)贊

你乘以字符而不是數(shù)字,這就是你得到 2600 的原因。在將它們相乘之前將你的字符轉(zhuǎn)換為數(shù)字。這是更新的代碼。


import java.util.*;


public class Main

{

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        List<Integer> list1 = new ArrayList<>();//changed here

        List<Integer> list2 = new ArrayList<>();//changed here

        System.out.print("Enter Distance ");

        String no = sc.next();


        try{

            Integer.parseInt(no);

        }catch(Exception e ) {

            System.out.println("NumberFormatException");

            return;

        }


        for(int i = 0 ; i < no.length() ; i++){

            if(i % 2 != 0){

                list1.add(Character.getNumericValue(no.charAt(i)));//changed here

            }else{

                list2.add(Character.getNumericValue(no.charAt(i)));//changed here

            }

        }


          for (int c : list1 ) {

            System.out.println(c);

          }


        int tot = 1;

        for (int i=0; i < list1.size() ; i++ ) {

            tot = tot * list1.get(i);

        }


        System.out.print(tot);

    }

}


查看完整回答
反對(duì) 回復(fù) 2022-12-15
?
慕萊塢森

TA貢獻(xiàn)1810條經(jīng)驗(yàn) 獲得超4個(gè)贊

您正在將Characters 與 h相乘int。所以字符會(huì)自動(dòng)轉(zhuǎn)換為整數(shù),但 java 獲取這些字符的 ASCII 值(例如 '0' == 48)。因?yàn)?'2' 的 ASCII 值是 50 作為整數(shù),而 '4' 的值是 52 作為整數(shù),所以當(dāng)它們相乘時(shí)你得到 2600。


您可以通過替換“0”值來簡單地將 ASCII 值轉(zhuǎn)換為整數(shù)值:


tot = tot * (list1.get(i) - '0');

你可以使用 java 8 stream API 來做你想做的事:


int tot = no.chars() // Transform the no String into IntStream

        .map(Integer.valueOf(String.valueOf((char) i))) // Transform the letter ASCII value into integer

        .filter(i -> i % 2 == 0) // remove all odd number

        .peek(System.out::println) // print remaining elements

        .reduce(1, (i, j) -> i * j); // multiply all element of the list (with the first value of 1)



查看完整回答
反對(duì) 回復(fù) 2022-12-15
?
慕妹3146593

TA貢獻(xiàn)1820條經(jīng)驗(yàn) 獲得超9個(gè)贊

您應(yīng)該將字符轉(zhuǎn)換為整數(shù)值:


for (int i=0; i < list1.size() ; i++ ) {

  tot = tot *  Integer.valueOf(list1.get(i).toString());

}


查看完整回答
反對(duì) 回復(fù) 2022-12-15
  • 3 回答
  • 0 關(guān)注
  • 146 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)