摘要: #include "stdio.h" #include "stdlib.h" #define MaxSize 100 typedef struct sqlist{ int data[MaxSize]; int length; }SqList; void CreateList(SqList *p,in 阅读全文
posted @ 2020-03-31 14:17 恬恬超级甜 阅读(337) 评论(0) 推荐(1) 编辑
摘要: #include<stdio.h> #include <stdlib.h> typedef struct Lnode{ char data;/*数据域,保存节点的值。*/ struct Lnode*next;/*指针域*/ } LNode;/*节点的类型*/ LNode *CreateList_L( 阅读全文
posted @ 2020-03-31 14:16 恬恬超级甜 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 求1~99之间的和 public static void main(String[] args) { // TODO Auto-generated method stub int i=1; int sum=0; do { sum+=i; i=i+2; } while(i<=100); System. 阅读全文
posted @ 2020-03-31 13:50 恬恬超级甜 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 当鼠标指示外框时显示隐藏内容 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style> *{margin: 0;padding: 0;} ul,ol,li{list-style: none;} a{tex 阅读全文
posted @ 2020-03-31 13:37 恬恬超级甜 阅读(163) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <style> *{margin: 0;padding:0 ;} ul,ol,li{list-style: none;} a{color: black;} # 阅读全文
posted @ 2020-03-31 13:30 恬恬超级甜 阅读(144) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style> *{margin: 0;padding: 0;} ul,li{list-style: none;} img{border: none;} #scr 阅读全文
posted @ 2020-03-31 13:25 恬恬超级甜 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <title></title> 6 <style> 7 *{margin: 0;padding: 0;} 8 ul,ol ,li{list-style: none;} 9 a 阅读全文
posted @ 2020-03-31 13:09 恬恬超级甜 阅读(259) 评论(0) 推荐(0) 编辑