#!/usr/bin/env python# coding: utf-8'ct_p14.py -- use isinstance() to tell the type of a value' #此处为脚本doc文档#print("Enter something, you will see its t...
分类:
其他好文 时间:
2015-08-13 19:31:31
阅读次数:
216
1. Move the cursor to the position where you want to operate.
2. Press CTRL + v into "visible" mode, select the column to operate on how many rows.
3. Enter SHIFT + i (I) to insert the conten...
分类:
系统相关 时间:
2015-08-13 12:12:05
阅读次数:
234
ssh登陆树莓派之后执行upgrade,感觉窗口在那边碍眼。不过还好百度了一下,没有直接X掉。看到http://blog.csdn.net/wind19/article/details/4986458nohup command &然后再enter,然后exit。经验证之前的进程还在
分类:
Web程序 时间:
2015-08-12 21:39:12
阅读次数:
122
1.Run Tcode se19
2.create enhancement and click on classic badi radio button
3.Enter badi name MB_MIGO_BADI and click on button create
4. give you Implementation Name
5. Click method of interface .it will ask you to create the enhancement implementatio...
分类:
其他好文 时间:
2015-08-11 21:32:15
阅读次数:
249
[root@localhost ~]# mysql -uroot -p Enter password: ERROR 2002 (HY000): Can‘t connect to local MySQL server through socket ‘/var/lib/mysql/mysql.sock‘ (111) 解决方案: [root@localhost ~]# service ...
分类:
数据库 时间:
2015-08-11 19:30:51
阅读次数:
129
getchar() putchar()
getchar()获取从键盘输入的单个字符 putchar()将单个字符发送至屏幕
虽然getchar()获取单个字符,但除非按下Enter 键 否则控制不会返回程序
getchar() 函数命令C程序将输入放入缓冲区(buffer),按下Enter键后 缓冲区的内容以每次一个字符释放
所以 1.没有按下Ente...
分类:
其他好文 时间:
2015-08-11 18:45:00
阅读次数:
155
No person desires to offer his/her printed excessive observe enter in the palms which will not benefit just what it indicates in their mind. Correctin...
分类:
移动开发 时间:
2015-08-11 17:43:59
阅读次数:
134
贪心,每次遇到一个满水的湖要下暴雨的时候,就往前找之前最后一次满水之后的第一个没有下雨的且没有被用掉天day1。因为如果不选这day1,那么之后的湖不一定能选上这一天。如果这一天后面还有没有下雨的天day2的话,选后面的,会使得day1到day2之前满水的湖选择减少。#include#define ...
分类:
其他好文 时间:
2015-08-11 06:54:36
阅读次数:
233
第一、快捷键 ?????idea编辑快捷键 1、alt+enter 自动导入包 2、shit+command+u 自动切换大小写 3、command+f12 显示当前文件结构 4、command+alt+r 运行 5、command+shit+向上,向下 (选中行上移或者下移)...
分类:
系统相关 时间:
2015-08-10 08:19:22
阅读次数:
257
#include
#include
using namespace std;
char *c[] = { "ENTER", "NEW", "POINT", "FIRST" };
char **cp[] = { c+3, c+2, c+1, c };
char ***cpp = cp;
int main(void)
{
printf("%s", **++c...
分类:
其他好文 时间:
2015-08-09 00:27:25
阅读次数:
110