java 求只含有奇数的1*3*5*7*9*11*......*n的最后一位
时间: 2023-12-04 20:03:41 浏览: 124
存在连续三个奇数的数组1
以下是Java求只含有奇数的1*3*5*7*9*11*......*n的最后一位的代码:
```java
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int n = scan.nextInt();
int result = 1;
for (int i = 1; i <= n; i++) {
result = (result * (2 * i - 1)) % 10;
}
System.out.println(result);
}
}
```
阅读全文