11 2020 档案
摘要:import pygame# 导入事件和键名.from pygame.locals import *# 设置窗口(尺寸和背景图片宽高保持一致).canvas = pygame.display.set_mode((1050, 660))# 修改窗口的标题.pygame.display.set_capt
阅读全文
摘要:// 判断输入的括号格式是否正确(只限于小括号和中括号) 【输入】 [[([()])]] 【输出】 YES #include<iostream>#include<cstring>using namespace std;char b[101];int top=0; void push(char x){
阅读全文