gpt4 book ai didi

java - 添加数字的第一位和最后一位数字

转载 作者:行者123 更新时间:2023-12-01 17:53:50 24 4
gpt4 key购买 nike

我正在尝试添加“否”的第一个和最后一个数字,但是在程序进入 while 循环后,它开始要求更多输入,就像无限循环一样。

Scanner sc = new Scanner(System.in);
int t = sc.nextInt();//no of testcases
int n[]=new int[t];
int last=0,first = 0;
for(int i=0;i<t;i++){
n[i]=sc.nextInt();
sc.nextLine();
last=n[i]%10;
while(n[i]>=10){
first=n[i]/10;
}
System.out.println(first+last);
}

最佳答案

我就是这么做的。

public static void main(String[] args) 
{
Scanner sc = new Scanner(System.in);
int t = sc.nextInt();
String temp = t+"";
String[] arr = temp.split("");

int x = Integer.parseInt(arr[0]) + Integer.parseInt(arr[arr.length - 1]);

System.out.println(x);
}

关于java - 添加数字的第一位和最后一位数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60753218/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com