首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴JasonBi的代码贴全部
#include<iostream>
#include<cstdlib>
#include<stdlib.h>
#include<time.h>
using namespace std;
int main()
{
int a,b,d,c,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z;
d = 0;
while (1)
{
if (d==3)
......................
阅读全部 | 2022年11月3日 22:28
#include<iostream>
#include<cstdlib>
#include<stdlib.h>
#include<time.h>
using namespace std;

int main()
{
srand((unsigned)time(NULL));
int a,c,d;
d = 0;
a = rand()%100;
......................
阅读全部 | 2022年11月3日 22:26
# -*- encoding = utf-8 -*-
import qrcode
from tkinter import *
from tkinter import messagebox
import os

def made(string,filename):
    if not os.path.exists('images'):
        os.mkdir('images')
    os.chdir('images')
    img = qrcode.make(string)
    img.save(filename)
......................
阅读全部 | 2022年6月9日 09:06
1
JasonBi