📄 pku1405.java
字号:
import java.io.*;
import java.util.*;
import java.math.BigInteger;
class Main
{
public static void main(String args[]) throws Exception
{
Scanner cin=new Scanner(System.in);
int i, n;
BigInteger up, down, j;
while(cin.hasNext())
{
up = BigInteger.ONE;
down = BigInteger.ONE;
n = cin.nextInt();
for (i = 0; i < n; i++)
{
if (down.mod(up).equals(BigInteger.ZERO))
{
j = down.add(BigInteger.ONE).divide(up);
}
else
{
j = down.divide(up);
}
up = up.multiply(j);
up = up.add(down.negate());
down = down.multiply(j);
System.out.println(j);
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -