会员
T恤
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Welcome to Ilamjan`s blog
博客园
首页
新随笔
新文章
联系
订阅
管理
2022年1月23日
单链表实例,适合初学者使用
摘要: 单链表实例 1 #include<stdio.h> 2 #include<stdlib.h> 3 4 5 //定义节点类型 6 typedef struct Node 7 { 8 int data; 9 struct Node *next; 10 }Node, *LinkedList; 11 12
阅读全文
posted @ 2022-01-23 18:33 ilamjan
阅读(81)
评论(0)
推荐(0)
2020年7月25日
贪吃蛇 C语言源代码
摘要: #include <stdio.h> #include <graphics.h> #include <stdlib.h> #include <dos.h> /*引用的库函数*/ #define LEFT 0x4b00 #define RIGHT 0x4d00 #define DOWN 0x5000
阅读全文
posted @ 2020-07-25 21:38 ilamjan
阅读(1092)
评论(0)
推荐(0)
2020年7月21日
ubuntu 更改阿里云镜像源
摘要: 首先我们还是要先备份下: sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak 更改源(使用vim编辑器或者gedit编辑器) sudo vim /etc/apt/sources.list 或者 sudo gedit/etc/apt/sour
阅读全文
posted @ 2020-07-21 23:28 ilamjan
阅读(1695)
评论(0)
推荐(0)
C语言表白
摘要: //最浪漫的表白代码,给你的小宝宝一个惊喜~~~~~~~#include <stdio.h> void changecolor(void); void xin(void); int main() { char love[50],name[50],date[50]; printf("请输入表白话语:"
阅读全文
posted @ 2020-07-21 23:05 ilamjan
阅读(731)
评论(0)
推荐(0)
点击右上角即可分享