-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpingpangqiu.py
More file actions
26 lines (20 loc) · 985 Bytes
/
pingpangqiu.py
File metadata and controls
26 lines (20 loc) · 985 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#_*_ coding:utf-8 _*_
# 题目:两个乒乓球队进行比赛,各出三人。
# 甲队为a,b,c三人,乙队为x,y,z三人。
# 已抽签决定比赛名单。有人向队员打听比赛的名单。
# a说他不和x比,c说他不和x,z比,
# 请编程序找出三队赛手的名单。
# for i in range(ord('x'),ord('z') + 1):
# for j in range(ord('x'),ord('Z') + 1):
# if i != j:
# for k in range (ord('x'),ord('z') + 1):
# if (i != k) and (j != k):
# if (i != ord('x')) and (k !=ord('x')) and (k != ord('z')):
# print 'order is a -- %s \t b -- %s\t c --%S' % (chr(i),chr(j),chr(k))
for i in range(ord('x'),ord('z') + 1):
for j in range(ord('x'),ord('z') + 1):
if i != j:
for k in range(ord('x'),ord('z') + 1):
if (i != k) and (j != k):
if (i != ord('x')) and (k != ord('x')) and (k != ord('z')):
print 'order is a -- %s\t b -- %s\t c -- %s' % (chr(i),chr(j),chr(k))