自定义快捷键 折叠所有标题Word选项—自定义功能区—自定义键盘—不在功能区内的命令—ColllapseAllHeadings 展开所有标题Word选项—自定义功能区—自定义键盘—不在功能区内的命令—ExpandAllHeadings 全屏快捷键 Alt+V+U, esc退出 可通过录制宏设定F11...
分类:
其他好文 时间:
2015-04-18 11:16:30
阅读次数:
407
友情题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1247
#include
#include
#include
#include
using namespace std;
const int N=30;
const int MAX=50005;
char word[MAX][30];
struct node
{
bool temp;
no...
分类:
其他好文 时间:
2015-04-18 08:52:58
阅读次数:
148
类似poj 3621。
代码:
//poj 2949
//sep9
#include
#include
#include
#include
#include
using namespace std;
const int maxL=1024;
const int maxM=100100;
char s[maxL];
struct Words
{
int in,out,len;
}w...
分类:
其他好文 时间:
2015-04-18 08:47:33
阅读次数:
141
这种转换技术最好用汉王,因为非常轻巧,但最好的软件应该是ABBYY,同时acrobat pro 也可将图片格式的pdf转化为word。 汉王使用指南:
分类:
其他好文 时间:
2015-04-18 01:09:44
阅读次数:
136
今日写一个程序无论如何也调不好,后来一步步做改动筛选,直到筛到这一步 bool in_word=true;
char ch;
while (ch=getchar() && in_word){}循环到这一步无论如何都不继续进行,于是我就改变了一下顺序。ch=getchar();
while(in_word){}程序又可以正常运行了,遂将获取字符的语句顺手加到了后面。while (...
分类:
其他好文 时间:
2015-04-17 23:54:01
阅读次数:
159
Given an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the".For C programmers: Try to solv...
分类:
其他好文 时间:
2015-04-17 18:05:36
阅读次数:
108
word-wrap:css的 word-wrap 属性用来标明是否允许浏览器在单词内进行断句,这是为了防止当一个字符串太长而找不到它的自然断句点时产生溢出现象。word-break:css的 word-break 属性用来标明怎么样进行单词内的断句。首先,何谓单词内断句?当然这里指的都是西文单词。这...
分类:
其他好文 时间:
2015-04-17 15:28:10
阅读次数:
136
tr命令可以用来做简单的字符替换与删除,常用的有-d, -s选项。它的替换与删除是按单个字符来的假设有以下文本:Read from the file words.txt and output the word frequency list to stdout.USE CASE 1:将文本全部转化为大...
分类:
其他好文 时间:
2015-04-17 15:23:48
阅读次数:
159
HTML--超文本标记语言Hyper Text Markup Language。一,常规标签(1)格式控制(记忆模型--Word工具栏)加粗,倾斜下划线,回车,删除线字体颜色,大小,名称(2)内容容器(记忆模型--腾讯新闻页面)........----新闻标题----新闻正文---相关推荐---回到...
分类:
Web程序 时间:
2015-04-17 13:47:32
阅读次数:
144
HTMLHyper Text Markup Language - 超文本标记语言。一、常规标记(一)格式控制模型:Word工具栏 加粗倾斜下划线删除线回车(二)内容容器模型:新闻页面.... //标题 //段落标记 //列表 //层,层上局部位置调整二、两个最常用...
分类:
Web程序 时间:
2015-04-17 13:24:31
阅读次数:
140