序号 |
标题 |
代码 |
编程语言 |
最后编辑时间 |
浏览次数 |
41
|
作者真懒,题目都不写 ╮(╯_╰)╭
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>iTool - 在线代码编辑</title>
</head>
<body>
<h1>我的第一个标题</h1>
<p>我的第一个段落。</p>
<script type="text/javascript" charset="utf-8">
alert
</script>
</body>
</html>
|
HTML/CSS/JS
|
2018-12-18 09:55:12
|
192
|
42
|
sadf
|
/**
* Created on: 2019年03月19日 20:42:19
* Author: Guest
* Copyright (c) 2019, All Rights Reserved.
*/
#include <stdio.h>
int main()
{
// 我的第一个 C 程序
printf("Hello, World! \n");
return 0;
}
|
C/C++
|
2019-03-19 20:48:43
|
184
|
43
|
xxxx
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>iTool - 在线代码编辑</title>
</head>
<body>
<h1>我的第一个标题</h1>
<p>我的第一个段落。</p>
</body>
</html>
|
HTML/CSS/JS
|
2019-05-05 23:57:21
|
129
|
44
|
8787
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>iTool - 在线代码编辑</title>
</head>
<body>
<h1>我的第一个标题</h1>
<p>我的第一个段落。</p>
</body>
</html>
|
HTML/CSS/JS
|
2019-05-22 14:41:10
|
175
|
45
|
8787
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>iTool - 在线代码编辑</title>
</head>
<body>
<h1>我的第一个标题</h1>
<p>我的第一个段落。</p>
</body>
</html>
|
HTML/CSS/JS
|
2019-05-22 14:41:20
|
125
|
46
|
作者真懒,题目都不写 ╮(╯_╰)╭
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>iTool - 在线代码编辑</title>
</head>
<body>
<h1>我的第一个标题</h1>
<p>我的第一个段落。</p>
</body>
</html>
|
HTML/CSS/JS
|
2019-06-11 20:15:15
|
136
|
47
|
作者真懒,题目都不写 ╮(╯_╰)╭
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>iTool - 在线代码编辑</title>
<style type="text/css">
h1{
color: red;
}
</style>
</head>
<body>
<h1>我的第一个标题</h1>
<p>我的第一个段落。</p>
</body>
</html>
|
HTML/CSS/JS
|
2019-06-13 17:08:12
|
164
|
48
|
demo
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>iTool - 在线代码编辑</title>
</head>
<body>
<h1>我的第一个标题</h1>
<p>我的第一个段落。</p>
</body>
</html>
|
HTML/CSS/JS
|
2019-07-27 17:27:20
|
110
|
49
|
demo
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>iTool - 在线代码编辑</title>
</head>
<body>
<h1>我的第一个标题</h1>
<p>我的第一个段落。</p>
</body>
</html>
|
HTML/CSS/JS
|
2019-07-27 17:27:55
|
109
|
50
|
链表
|
/**
* Created on: 2016年09月18日 18:29:35
* Author: Guest
* Copyright (c) 2016, tool.usta.wiki , All Rights Reserved.
*/
#include <stdio.h>
typedef struct {
char key[15]; //关键字
char name[20];
int age;
} DATA; //数据结点类型
#include <stdlib.h>
typedef struct Node {
DATA data;
struct Node *next;
} ChainListType;
ChainListType *ChainListAddEnd(ChainListType *head,DATA data); //添加结点到链表末尾
ChainListType *ChainListAddFirst(ChainListType *head,DATA data); //添加结点到链表首部
ChainListType *ChainListFind(ChainListType *head,char *key); //按关键字在链表中查找内容
ChainListType *ChainListInsert(ChainListType *head,char *findkey,DATA data); //插入结点到链表指定位置
int ChainListDelete(ChainListType *head,char *key);//删除指定关键字的结点
int ChainListLength(ChainListType *head);//获取链表结点数量
//#include "2-5 ChainList.c"
#include <string.h>
ChainListType *ChainListAddEnd(ChainListT ...
|
C/C++
|
2019-08-11 12:04:57
|
94
|
51
|
test
|
/**
* Created on: 2019年11月14日 10:33:11
* Author: Guest
* Copyright (c) 2019, All Rights Reserved.
*/
#include <stdio.h>
int main()
{
// 我的第一个 C 程序
printf("Hello, World! \n");
return 0;
}
|
C/C++
|
2019-11-14 10:33:24
|
198
|
52
|
test
|
/**
* Created on: 2019年11月14日 10:33:11
* Author: Guest
* Copyright (c) 2019, All Rights Reserved.
*/
#include <stdio.h>
int main()
{
// 我的第一个 C 程序
printf("Hello, World! \n");
return 0;
}
|
C/C++
|
2019-11-14 10:34:22
|
113
|
53
|
作者真懒,题目都不写 ╮(╯_╰)╭
|
/**
* Created on: 2019年11月27日 10:22:09
* Author: Guest
* Copyright (c) 2019, All Rights Reserved.
*/
#include <stdio.h>
int main()
{
// 我的第一个 C 程序
printf("Hello, World! \n");
return 0;
}
|
C/C++
|
2019-11-27 10:22:17
|
189
|
54
|
大大
|
object file {
def main(args:Array[String])
{
println("Hello World!")
}
}
|
Scala
|
2019-12-06 12:37:50
|
86
|
55
|
大大
|
object file {
def main(args:Array[String])
{
println("Hello World!")
}
}
|
Scala
|
2019-12-06 12:38:10
|
137
|
56
|
作者真懒,题目都不写 ╮(╯_╰)╭
|
/**
* Created on: 2019年12月17日 22:44:38
* Author: Guest
* Copyright (c) 2019, All Rights Reserved.
*/
public class HelloWorld {
public static void main(String []args) {
System.out.println("Hello World!");
}
}
|
Java
|
2019-12-17 22:44:48
|
112
|
57
|
链表
|
/**
* Created on: 2016年09月18日 18:29:35
* Author: Guest
* Copyright (c) 2016, tool.usta.wiki , All Rights Reserved.
*/
#include <stdio.h>
typedef struct {
char key[15]; //关键字
char name[20];
int age;
} DATA; //数据结点类型
#include <stdlib.h>
typedef struct Node {
DATA data;
struct Node *next;
} ChainListType;
ChainListType *ChainListAddEnd(ChainListType *head,DATA data); //添加结点到链表末尾
ChainListType *ChainListAddFirst(ChainListType *head,DATA data); //添加结点到链表首部
ChainListType *ChainListFind(ChainListType *head,char *key); //按关键字在链表中查找内容
ChainListType *ChainListInsert(ChainListType *head,char *findkey,DATA data); //插入结点到链表指定位置
int ChainListDelete(ChainListType *head,char *key);//删除指定关键字的结点
int ChainListLength(ChainListType *head);//获取链表结点数量
//#include "2-5 ChainList.c"
#include <string.h>
ChainListType *ChainListAddEnd(ChainListT ...
|
C/C++
|
2019-12-27 14:12:37
|
114
|
58
|
作者真懒,题目都不写 ╮(╯_╰)╭
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>iTool - 在线代码编辑</title>
</head>
<body>
<h1>我的第一个标题</h1>
<p>我的第一个段落。</p>
</body>
</html>
|
HTML/CSS/JS
|
2020-02-28 19:55:07
|
87
|
59
|
作者真懒,题目都不写 ╮(╯_╰)╭
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>iTool - 在线代码编辑</title>
</head>
<body>
<h1>我的第一个标题</h1>
<p>我的第一个段落。</p>
</body>
</html>
|
HTML/CSS/JS
|
2020-02-28 19:56:46
|
94
|
60
|
作者真懒,题目都不写 ╮(╯_╰)╭
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>iTool - 在线代码编辑</title>
</head>
<body>
<h1>我的第一个标题</h1>
<p>我的第一个段落。</p>
</body>
</html>
|
HTML/CSS/JS
|
2020-02-28 20:20:07
|
85
|