02 2022 档案
摘要:<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <link rel="stylesheet" type="text/css" href="css_back.css"/> </head> <body> <div
阅读全文
摘要:<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <!-- 外部css --> <!-- rel 规定当前文档与被链接文档之间的关系 stylesheet 文档的外部样式表。 type 属性 规定被链接文档的 M
阅读全文
摘要:<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> </head> <body> <!-- action 指定服务器url地址 method 提交方式 get或post Autocomplete 根据之前输入的值自
阅读全文
摘要:<!DOCTYPE html> <html> <head> <!-- meta 元素被用于规定页面的描述、关键词、 文档的作者、最后修改时间以及其他元数据 --> <meta charset="utf-8"> <meta name="keywords" content="HTML, CSS" />
阅读全文
摘要:<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> .cla1{ background-color: blue; color: red; } span.red{ co
阅读全文
摘要:<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> </head> <body> <p> <!-- 无序列表 ul中只能放li标签,li里面都能放 --> <!-- type 符号形状 --> <ul type="
阅读全文
摘要:<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> </head> <body> <!-- 表格 tr 每行 被td分割 td里面可以有标签 --> <!-- cellpadding 文字到边框距离 --> <!-
阅读全文
摘要:<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>html_url</title> </head> <body> <p> <!-- target 四个值 _blank 在新窗口打开 _self 此窗口 _parent _top -
阅读全文
摘要:<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>style</title> </head> <!-- 废弃标签 center,s,u,等 --> <body style="background-color: yellow;">
阅读全文
摘要:<!DOCTYPE html> <html> <head> <!-- 防止中文乱码 --> <meta charset="utf-8"> <title> this is a title </title> </head> <body> <!-- 块元素 h p ul table div 以新行开始 -
阅读全文
摘要:[http://ybt.ssoier.cn:8088/problem_show.php?pid=1211]() #include <iostream> #include <algorithm> #include <cstring> #include <cstdio> #include <map> #
阅读全文
摘要:[http://ybt.ssoier.cn:8088/problem_show.php?pid=1199]() 一本通 1199 #include <iostream> #include <cstring> #include <cstdio> #define maxn 10000005 typede
阅读全文
摘要:#include <iostream> #include <algorithm> #include <cstring> #include <cstdio> #include <map> #include <queue> #include <set> #include <iterator> #incl
阅读全文
摘要:#include <iostream> #include <algorithm> #include <cstring> #include <cstdio> #include <map> #include <queue> #include <set> #include <iterator> #incl
阅读全文
摘要:左移运算 左移运算符“<<”是双目运算符。左移n位就是乘以2的n次方。 其功能把“<<”左边的运算数的各二进位全部左移若干位,由“<<”右边的数指定移动的位数,高位丢弃,低位补0。(x<<n == x*2^n) 右移运算 右移运算符“>>”是双目运算符。右移n位就是除以2的n次方。其功能是把“>>”
阅读全文
摘要:#include <iostream> #include <algorithm> #include <cstring> #include <cstdio> #include <map> #include <stack> #include <queue> #include <set> #include
阅读全文
摘要:#include <iostream> #include <algorithm> #include <cstring> #include <cstdio> #include <map> #include <queue> #include <set> #include <iterator> #incl
阅读全文