首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴mimijilu的代码贴全部
<!DOCTYPE html>
    <html>
    <head>
    <meta charset="UTF-8" />
    <title>学生心理档案</title>
    <style>

    </style>
    <script src="jquery-1.8.0.js">
    </script>
    </head>
    <body>
......................
阅读全部 | 2021年11月16日 12:52
<!DOCTYPE html>
    <html>
    <head>
    <meta charset="UTF-8" />
    <title>体测查询</title>
    <style>

    </style>
    <script src="jquery-1.8.0.js">
    </script>
    </head>
    <body>
......................
阅读全部 | 2021年11月16日 12:46
#!/usr/bin/python3
from bottle import route,hook,template, run,request,response,get
import pymysql,json
@hook('after_request')
def enable_cors():
    response.headers['Access-Control-Allow-Origin'] = '*'
    response.headers['Access-Control-Allow-Methods'] = 'GET, POST, PUT, OPTIONS'
    response.headers['Access-Control-Allow-Headers'] = 'Authorization, Content-Type, Depth, User-Agent, X-File-Size, X-Requested-With, X-Requested-By, If-Modified-Since, X-File-Name, X-File-Type, Cache-Control, Origin'
@get('/hello')
def hello():
    db = pymysql.connect(host="172.16.8.224",user= "reader", password="123456",database= "student_information",port=1432)
    cursor = db.cursor()
......................
阅读全部 | 2021年11月16日 12:44
#!/usr/bin/python3
print('y=应用层,b=表示层,h=会话层,c=传输层,wa=网络层,s=数据链路层,wu=物理层')
print('请输入答案,以空格隔开:')
while True:
b=[-1,-1,-1,-1,-1,-1,-1]
a=input().split()
if a[0]=='exit' : break;
if a[0]=='js':
c=eval(a[1])
print (c)
continue
for i in range(0,len(a)):
......................
阅读全部 | 2020年11月23日 12:53
create or replace trigger stu_trig
after delete or insert or UPDATE on tb_student
declare
    age number;
    cnt number;
begin
    if inserting then
        select min(TRUNC(months_between(sysdate, birthday)/12)) into age from tb_student;
        dbms_output.put_line(age);
    elsif deleting then
        select count(*) into cnt from tb_student;
        dbms_output.put_line(cnt);
......................
阅读全部 | 2019年6月1日 20:07
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style type="text/css">

.msyhbd{
font-weight:bold;
font-family:"微软雅黑","SimSun";
}
.msyh{
font-family:"微软雅黑","SimSun";
......................
阅读全部 | 2019年3月7日 12:01
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
float rabbit;
float tortoise;
void *runner_rabbit(void *param);
void *runner_tortoise(void *param);

int main(int argc, char *argv[])
{
    srand(time(NULL));
......................
阅读全部 | 2018年11月1日 14:27
#include<iostream>
#include<stdio.h>
#include<stdlib.h>
using namespace std;
struct Bnode
{
char data;
Bnode *lch;
Bnode *rch;
};
typedef Bnode* Btree;

......................
阅读全部 | 2018年10月30日 13:22
$ ./test
“Press ctrl+D exit”
–n “Input your favoriate film:”
aaaa
“yes, aaaa is a good movie!”
–n “Input your favoriate film:”
bbbb
“yes, bbbb is a good movie!”
–n “Input your favoriate film:”
cccc
“yes, cccc is a good movie!”
–n “Input your favoriate film:”
......................
阅读全部 | 2018年10月12日 15:44
vjjdjdjshxijejwkdjskw[]nn+-+<<<{}[]{<>+-&}-+>>>-j
阅读全部 | 2018年3月19日 18:54
1 2 下一页
mimijilu