随笔分类 -  代码

摘要:代码 找一个可以用的ip然后加入代理 用代理ip去访问 import requests # 114.255.132.60:3128 proxies ={ "https":"http://114.255.132.60:3128" } response = requests.get("http://ww 阅读全文
posted @ 2024-02-28 22:12 会秃头的小白 阅读(39) 评论(0) 推荐(0)
摘要:num = int(input("请输入一个数字:")) square = num*num; print(num,"的平方为:",square) a=int(input("请输入矩形的高:")) b=int(input("请输入矩形的宽:")) print("矩形的面积为:",end="") pri 阅读全文
posted @ 2023-10-19 22:41 会秃头的小白 阅读(19) 评论(0) 推荐(0)
摘要:Login.jsp <%-- Created by IntelliJ IDEA. User: dell Date: 2022/12/20 Time: 23:38 To change this template use File | Settings | File Templates. --%> <% 阅读全文
posted @ 2022-12-21 11:47 会秃头的小白 阅读(38) 评论(0) 推荐(0)
摘要:<html><head> <meta charset="utf-8"> <title>loveHeart</title> <link rel="shortcut icon" href="http://zhouql.vip/images/心.png" type="image/x-icon"> <sty 阅读全文
posted @ 2022-11-10 09:04 会秃头的小白 阅读(68) 评论(0) 推荐(0)
摘要:import java.io.BufferedReader;import java.io.File;import java.io.FileNotFoundException;import java.io.FileReader;import java.io.IOException;import jav 阅读全文
posted @ 2022-10-21 17:23 会秃头的小白 阅读(34) 评论(0) 推荐(0)
摘要://// Source code recreated from a .class file by IntelliJ IDEA// (powered by FernFlower decompiler)//public class user { private String id; private St 阅读全文
posted @ 2022-10-10 19:38 会秃头的小白 阅读(31) 评论(0) 推荐(0)
摘要:import com.sun.javaws.IconUtil;//这个跟那个差不多 进步在于 类 至于三年级没写 道理相同import java.util.Scanner;public class Main { public static void main(String[] args) { Str 阅读全文
posted @ 2022-10-10 19:29 会秃头的小白 阅读(19) 评论(0) 推荐(0)
摘要://这个代码吧 略有缺陷 四则运算的乘除与加减 只能从左到右依次计算 还没想好怎么做import java.util.Random;import java.util.Scanner;public class test { public static void main(String[] args) 阅读全文
posted @ 2022-10-10 19:27 会秃头的小白 阅读(42) 评论(0) 推荐(0)