上一页 1 ··· 5 6 7 8 9 10 下一页
摘要: 很简单,就是用管理员身份打开这个文件 不要被网上的一些乱七八糟的迷惑了 sudo vim ....... 解决了问题请点个赞,谢谢 阅读全文
posted @ 2019-03-20 15:31 小菜鸡的梦想 阅读(7793) 评论(3) 推荐(3) 编辑
摘要: su root 切换为root用户(如果不行,sudo passwd) software-properties-gtk 打开software & updates vi /etc/hosts 打开hosts文件 vim /etc/hosts 修改hosts文件(里边有hostname) sudo +命 阅读全文
posted @ 2019-03-20 09:15 小菜鸡的梦想 阅读(390) 评论(0) 推荐(0) 编辑
摘要: alert(<msg>) 向用户显示对话框窗口并等候其被关闭 blur() 让窗口失去键盘焦点 clearInterval(<id>) 撤销某个时间间隔计时器 clearTimeout(<id>) 撤销某个超时计时器 close() 关闭窗口 confirm(<msg>) 显示一个带有确认和取消提示 阅读全文
posted @ 2019-03-18 10:33 小菜鸡的梦想 阅读(2729) 评论(0) 推荐(0) 编辑
摘要: activeElement 返回代表文档中dangqianhuodejiaodianyuansudeduixaing body 返回代表文档中body元素的对象 characterSet 返回文档的字符集编码。这是一个只读属性 character 获得或设置文档的字符集编码 childNodes 返 阅读全文
posted @ 2019-03-18 09:57 小菜鸡的梦想 阅读(1136) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-03-17 16:58 小菜鸡的梦想 阅读(710) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>using namespace std;#include<malloc.h>#define Max 50typedef char ElemType;typedef struct{ ElemType a[Max]; int length;}A;void InitLi 阅读全文
posted @ 2019-03-17 13:24 小菜鸡的梦想 阅读(681) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>using namespace std;#include<malloc.h>#include<stdio.h>typedef int Elem;typedef struct AA{ Elem data; struct AA *next;}A;void Create 阅读全文
posted @ 2019-03-17 13:24 小菜鸡的梦想 阅读(430) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>using namespace std;int main(){ string a; int flag; cin>>a; for(int i=0;i<a.length();i++) { if(a[i]==a[a.length()-i-1]) { flag=1; } 阅读全文
posted @ 2019-03-17 13:23 小菜鸡的梦想 阅读(347) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>using namespace std;#include<malloc.h>typedef char Elem;typedef struct AA{ Elem data; struct AA *next;}A;void Create(A *&L){ L=(A *) 阅读全文
posted @ 2019-03-17 13:23 小菜鸡的梦想 阅读(864) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>using namespace std;int main(){ int n,j; cin>>n; j=n; void fact(int n); cout<<n<<"="; fact(j);}void fact(int n){ for(int i=2;i<=n;i+ 阅读全文
posted @ 2019-03-17 13:22 小菜鸡的梦想 阅读(635) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 下一页