程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> UVa 10935

UVa 10935

編輯:關於C++

模擬隊列操作。 注意當n == 1時第一行輸出末尾沒有空格。PE一次~~~

代碼 :

import java.util.*;

public class Main10935 {

	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		Queue q = new LinkedList();
		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());
		}

	}

}


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved