码迷,mamicode.com
首页 > Windows程序 > 详细

UVa 10935 - Throwing cards away I

时间:2014-12-26 23:05:58      阅读:472      评论:0      收藏:0      [点我收藏+]

标签:

模拟队列操作。  注意当n == 1时第一行输出末尾没有空格。PE一次~~~

代码  :

import java.util.*;

public class Main10935 {

	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		Queue<Integer> q = new LinkedList<Integer>();
		while(true) {
			int n = scan.nextInt();
			if(n == 0) break;
			for(int i=1; i<=n; i++) {
				q.offer(i);
			}
			System.out.print("Discarded cards:");
			int cnt = 0;
			while(true) {
				cnt ++;
				if(q.size() == 1) break;
				//q.poll();
				if(cnt == 1)
				    System.out.print(" " + q.poll());
				else
					System.out.print(", " + q.poll());
				
				q.offer(q.poll());
			}
			System.out.println();
			System.out.println("Remaining card: " + q.poll());
		}

	}

}


 

 

UVa 10935 - Throwing cards away I

标签:

原文地址:http://blog.csdn.net/wxisme/article/details/42177425

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!