参考代码:
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int n = scanner.nextInt(); int []a = new int[n]; int cnt = 0; int out = 0; int last = 0; while(out < n) { for(int i = 0; i < n; i++) { if(a[i] == 0) { cnt++; if(cnt % 3 == 0) { out++; a[i] = 1; last = i + 1; } } } } System.out.print(last); } }
0.0分
4 人评分
Tom数 (C语言代码)浏览:784 |
C语言程序设计教程(第三版)课后习题10.1 (C语言代码)浏览:1517 |
C语言训练-角谷猜想 (C++代码)(3N+1问题)浏览:1850 |
C二级辅导-统计字符 (C语言代码)浏览:528 |
A+B for Input-Output Practice (V) (C++代码)浏览:485 |
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:639 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:467 |
简单的for循环浏览:1496 |
C语言程序设计教程(第三版)课后习题8.9 (C语言代码)浏览:897 |
三角形 (C语言代码)浏览:965 |