The 9th "Datang Cup" National University Student Mobile Communication 5G Technology Competition Provincial Winner List Announced

Organizing Committee of the 9th "Datang Cup" National College Students Mobile Communication 5G Technology Competition

According to the "Notice on Invitation to Participate in the Ninth "Datang Cup" National College Students Mobile Communication 5G Technology Competition" and the competition regulations, the ninth The list of provincial winners of the "Datang Cup" National College Students Mobile Communication 5G Technology Competition has been approved by the expert group of the competition organizing committee. The provincial competition contestants are now promoted to the national competition list (Annex 1) and won the second and third prizes of the provincial competition. The list (Appendix 2 and Appendix 3) will be published.

The public announcement period is April 21, 2022.

The information in the final selection results (school, instructor, name, etc.) will become the main content of the award certificate printing. All participating teams and instructors are requested to check carefully. From April 25th to April 25th, log in to the official website of the competition to correct the information, and the organizing committee will review it uniformly.

Supervision phone number: 18601256072 Attached to Mr. Yuan: 1. List of national competitions, schools (in no particular order) 2. List of second prize winners, schools (in no particular order) 3. List of third prize winners, schools (in no particular order) successively) Organizing Committee of the 9th "Datang Cup" National College Students Mobile Communication 5G Technology Competition April 21, 2022

Attached link: Announcement of provincial winners of the 9th "Datang Cup" National College Student Mobile Communication 5G Technology Competition-Industry Report Document Resources-CSDN Download

Daily practice:

import random
class caiquan():
    print('欢迎来到猜拳游戏')
    print('进入游戏--8')
    print('退出游戏--9')
    b = input("请输入:")
    print("你的选择是: ", b)
    print("\n")
    while b == '8':
         print('请进行猜拳:')
         print('石头--0')
         print('布--1')
         print('剪刀--2')
         print('退出游戏--9')
         # 如果输入的数不是0,1,2;可以设置为重新输入,或者设置为失败
         a = random.randint(0, 2)
         b = int(input("你选择的是:"))  # 整型,
         print("电脑选择的是:", a)
         if (a == 0 and b == 1) or(a == 1 and b == 2)or(a == 2and b == 0):
             print("你赢了!\n")
         elif a == b:
             print("平局!\n")
         else:
             print("你输了!\n")
    print('继续游戏--8')
    print('退出游戏--9')
    b = input("请重新选择:")
    print("你的选择是: ", b + "\n")
if __name__ == "__main__":
    caiquan()
    print('游戏结束!')
    pass

Guess you like

Origin blog.csdn.net/yyfloveqcw/article/details/124329095