/* * 解法: 首先来分析度数为n的点, 要使一个点度数为n, 则必须其它点都和它相连. * 这样的话其它点的度数都为2了, 只有本来和它相连的点度数为1. 将这两点 * 去了, 再分析度数为n-1的点. 可以发现每去两个点, 点1的度数都要加1. */ #include <iostream> using namespace std; int main() { int n; while (scanf("%d", &n), n) { printf("%d/n", (n + 1) / 2); } return 0; }