『壹』 如何用word看英文作文有多少个单词数
英文抄文章中的字数统计是以英语单词为计算单位的,统计的字数实际上是单词的数目。记数是每隔一个空格为一个单词,计为一个字;一个字母或空格为一个字符。由于英语单词的长短(即字母的个数)有变化,所以人工统计起来是一件麻烦事。但采用Microsoft Office WORD中的字数统计功能就很方便。在Word2010和Word2007中,用户需要切换到“审阅”功能区,在“校对”选项卡中单击“字数统计”按钮。打开“字数统计”对话框,用户可以看到“字数”、“字符数”等统计信息。
『贰』 英语作文的字数是怎样计算的
英文作文的字数,就按英文单词的数量计算,哪怕是不定冠词a也算一个字。但英语翻译的字数一般按中文字数计算。在word的工具栏中可以查询。
『叁』 一篇英语作文,单词数在60~70左右
我写
『肆』 拜托看下怎样在word文档中统计英文单词数 在线等了,十分谢谢大家
如果是统计所有单词的总个数,参考其他的热心网友;
如果是统计文档中的单词量,可以版去qiangwai登录一个网站,权连接如下:
https://wordcounttools.com/
『伍』 统计一篇英文文章的英文单词个数
/*
本程序由Turbo C2.0编译通过。英文文章请命名为english.txt并放在Turbo C所在目录下。运行结果以文件方式输出,输出文件result.txt也在Turbo C所在目录下。
word是不同的单词;
count是该单词在文章中出现的次数;
percent是文章中各单词出现的频率。
*/
#include "stdio.h"
main()
{
FILE *fp,*result;
char ch='\0';
char word[1000][20]; /* 最多存1000个不同单词,每个单词在20个字符内。 */
int count_word[1000]={0}; /* 每个单词对应个数 */
int i=0,j=0,k=0,flag=2,total=0;
float percent; /* 每个单词出现频率 */
clrscr();
if(((fp=fopen("english.txt","r"))&&(result=fopen("result.txt","w")))==NULL)
{
printf("Can't open file\n");
printf("Press any key to exit...");
getch();
exit(0);
}
printf("\nPlease wait...");
while(!feof(fp))
{
ch=fgetc(fp);
if(ch>='a'&&ch<='z'||ch>='A'&&ch<='Z')
{
if(ch>='A'&&ch<='Z') ch+=32;
flag=0;
word[i][j]=ch;
j++;
}
else flag++;
if(flag==1)
{
total++;
word[i][j]='\0';
count_word[i]++;
for(k=0;k<i;k++)
{
if(strcmp(word[i],word[k])==0)
{ count_word[k]++; count_word[i]=0; i--; break; }
}
i++;
j=0;
}
}
fprintf(result,"words count percent\n");
fprintf(result,"----------------------------------------");
for(k=0;k<i;k++)
{
fprintf(result,"\n%-20s",word[k]);
fprintf(result,"%-10d",count_word[k]);
percent=100.0*count_word[k]/total;
fprintf(result,"%.2f%%",percent);
}
fprintf(result,"\n\nThis text has %d word(s).",total);
fprintf(result,"\nAnd here has %d different word(s).",i);
fclose(fp);
fclose(result);
printf("OK!\n");
printf("Press any key to exit...");
getch();
printf("Bye bye!");
exit(0);
}
---------
以下是用c++编写
#include <iostream>
#include <fstream>
#include <cstdlib> // for exit()
#include <list>
#include <string>
using namespace std;
template <typename T>
void writeList(const list<T>& alist, const string& separator);
// maintains a word and its frequency of occurrence
class wordFreq
{
public:
// initialize word and set freq to 1
wordFreq(const string& str): word(str), freq(1)
{}
// add 1 to the frequency
void increment()
{ freq++; }
// equality operator compares the word for the objects
friend bool operator== (const wordFreq& lhs, const wordFreq& rhs)
{ return lhs.word == rhs.word; }
// less than operator compares the word for the objects
friend bool operator< (const wordFreq& lhs, const wordFreq& rhs)
{ return lhs.word < rhs.word; }
// output an object in the format: word (freq)
friend ostream& operator<< (ostream& ostr, const wordFreq& w)
{
ostr << w.word << " (" << w.freq << ')';
return ostr;
}
private:
string word;
// number of times word found
int freq;
};
template <typename T>
list<T>::iterator seqSearch(list<T>::iterator first,
list<T>::iterator last, const T& target);
int main()
{
ifstream fin;
// words read from file and inserted into wf
list<wordFreq> wf;
// use for seqSearch() and displaying the list
list<wordFreq>::iterator iter;
// prompt for the name of the file
string fileName, word;
cout << "Enter the name of the file containing the words: ";
cin >> fileName;
// error checking
fin.open(fileName.c_str());
if (!fin)
{
cerr << "Cannot open " << fileName << endl;
exit(1);
}
// read a word until end-of-file
while (fin >> word)
{
// declare a wordFreq object with frequency 1
wordFreq obj(word);
// search for word in the list wf
iter = seqSearch<wordFreq> (wf.begin(), wf.end(), obj);
// did we locate the word?
if (iter != wf.end())
// yes. increment the word frequency
(*iter).increment();
else
// word is new. insert obj into the list
wf.push_back(obj);
}
// list member function sort() orders the list
wf.sort();
// output each object on a separate line
cout << endl;
writeList(wf, "\n");
system("pause");
return 0;
}
template <typename T>
list<T>::iterator seqSearch(list<T>::iterator first,
list<T>::iterator last, const T& target)
{
// start at location first
list<T>::iterator iter = first;
// compare list elements with item until either
// we arrive at last or locate item
while(iter != last && !(*iter == target))
iter++;
// iter either points at item or is last
return iter;
}
template <typename T>
void writeList(const list<T>& alist, const string& separator = " ")
{
list<T>::const_iterator iter;
for (iter = alist.begin(); iter != alist.end(); iter++)
cout << *iter << separator;
cout << endl;
}
『陆』 如何计算英语单词字数
点击表格按钮,出现下拉菜单,再点击其中的字数统计
出现如下对话框
其中字数就是英文单词的字数
『柒』 数字的英文单词
1 one
2 two
3 three
4 four
5 five
6 six
7 seven
8 eight
9 nine
10 ten
11 eleven
12 twelve
13 thirteen
14 fourteen
15 fifteen
16 sixteen
17 seventeen
18 eighteen
19 nineteen
20 twenty
21 twenty-one
22 twenty- two
23 twenty- three
24 twenty- four
25 twenty- five
26 twenty- six
27 twenty- seven
28 twenty- eight
29 twenty- nine
30 thirty
31 thirty- one
32 thirty- two
33 thirty- three
34 thirty- four
35 thirty- five
36 thirty- six
37 thirty- seven
38 thirty- eight
39 thirty- nine
40 forty
41 forty- one
42 forty- two
43 forty- three
44 forty- four
45 forty- five
46 forty- six
47 forty- seven
48 forty- eight
49 forty- nine
50 fifty
51 fifty- one
52 fifty- two
53 fifty- three
54 fifty- four
55 fifty- five
56 fifty- six
57 fifty- seven
58 fifty- eight
59 fifty- nine
60 sixty
61 sixty- one
62 sixty- two
63 sixty- three
64 sixty- four
65 sixty- five
66 sixty- six
67 sixty- seven
68 sixty- eight
69 sixty- nine
70 seventy
71 seventy- one
72 seventy- two
73 seventy- three
74 seventy- four
75 seventy- five
76 seventy- six
77 seventy- seven
78 seventy- eight
79 seventy- nine
80 eighty
81 eighty- one
82 eighty- two
83 eighty- three
84 eighty- four
85 eighty- five
86 eighty- six
87 eighty- seven
88 eighty- eight
89 eighty- nine
90 ninety
91 ninety-one
92 ninety- two
93 ninety- three
94 ninety- four
95 ninety- five
96 ninety- six
97 ninety- seven
98 ninety- eight
99 ninety- nine
100 hundred
『捌』 根据以下条件写一篇英语作文,要求单词数在100-150之间。先谢谢了!
我是一个美丽抄的纸袭盘,是纸盘家族中的公主。有一天我被送到了一所学校的508教室,到了一个女孩的手里。我立刻感到惊恐不安,不知道我会有什么样的命运等待着我。
这时,我看到一个女孩正在思考着什么,她就把我闲置在一边,就以为她不会把我怎么样了,顿时安心下来,于是便四下张望,看到许多的纸盘在叫苦不迭,之间它们的主人不是在画它们就是在粘它们,看着它们黏上去后跟个狗皮膏药一样难看,我那颗放下的心又悬了起来。
那个女孩把3、6、9、12几个数字剪下来,粘在我的左右和上下四边,顿时我觉得浑身难受。然后她又剪了8个爱心,粘在空缺的四周。见她又从海绵纸上剪下两个耳朵给我戴上,又给我找了一双可爱的眼睛装上,给我按上了一个小嘴巴,还用笔在我嘴巴里画了一个红不啦叽的玩意儿,难看死了,我看我变成了这副模样急得都快要哭出来了,这时她突然还在我的中心戳戳戳了一个大洞,我痛得嗷嗷大叫,昏了过去。。
『玖』 英文怎么字数统计
英文文章中的字数统计是以英语单词为计算单位的,统计的字数实际上是单词的数目。记数是每隔一个空格为一个单词,计为一个字;一个字母或空格为一个字符。