gpt4 book ai didi

java - 如何将小数值转换为分数值?

转载 作者:行者123 更新时间:2023-12-02 10:26:32 26 4
gpt4 key购买 nike

excepted output : 1/4,1/2,3/4,1,5/4,3/2 but my output is coming as in the decimal form . Please help how to print in the form of fraction only.

import java.util.*;
public class Hello {

public static void main(String[] args) {
//Your Code Here
Scanner s=new Scanner(System.in);
int n=s.nextInt();
double d=1/4.0,sum=0;
for(int i=0;i<n;i++) {
sum+=d;
System.out.print(sum+" ");
}

}}

最佳答案

以字符串形式输入,因此它将以所需格式输入并用“/”分隔,即 someString.spit(“/”)。之后创建一个 for 循环并获取两个数字并将其存储在两个不同的变量中。然后对两者进行除法并在它们之间使用“/”打印它。

关于java - 如何将小数值转换为分数值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53915295/

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