period有几个词性
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了period有几个词性相关的知识,希望对你有一定的参考价值。
参考技术A period有三个词性,作名词时意为“一段时间;时期;(人生或国家历史的)阶段,时代;纪(地质年代,代下分纪)”,作副词时意为“某一时代的”,作形容词时意为“具有某个时代特征的”。扩展资料
释义
n. 一段时间;时期;(人生或国家历史的)阶段,时代;纪(地质年代,代下分纪)
adv. 某一时代的
adj. 具有某个时代特征的
词汇搭配
【作名词】
动词+period
come to period 完结,告终
conclude a period 结束一个时期
cover a period 包括一个时期
end a period 结束一个时期
形容词+period
brief period 短暂的阶段
certain period 某一时期
considerable period 相当长的.时期
cooling-off period 冷却(时)期
名词+period
emergency period 紧急时期
harvest period 收获时节
Jurassic period 侏罗纪时期
lesson period 一节课
介词+period
during period 在…期间
for period 在一段时期中
for period one year 一年间
in certain period 在某一时期
in that period 在那个…时期
within period 在…期间
period+介词
period of a circulating decimal 小数的循环节
period of adolescence 青春期
period of availability 有效期
period of gestation 妊娠期
period of history 历史时期
period of incubation 潜伏期
双语例句
1.You can have it for a trial period.
这东西你可以试用一段时间。
2.The next few weeks will be a period of readjustment
接下来的几周将是适应阶段。
3.He was the product of his period.
他是他那个时代的产物。
C#根据用户输入字符串,输出大写字母有几个,小写字母有几个
static void Main(string[] args)
{
// 根据用户输入字符串,输出大写字母有几个,小写字母有几个。
Console.WriteLine("请输入一行英文代码");
string s = Console.ReadLine(); //用一个字符串接受输入值。
int i = 0;
int j = 0;// i是大写个数, j是小写个数。
foreach (char s1 in s)
{
if (s1 >= ‘A‘ && s1 <= ‘Z‘)
{
i++;
}
else if(s1>=‘a‘&&s1<=‘z‘)
{
j++;
}
continue; // 如果输入的不是英文字母,则跳出循环。
}
Console.WriteLine("大写字母有{0}个,小写字母有{1}个。",i,j);
}
运行结果:
以上是关于period有几个词性的主要内容,如果未能解决你的问题,请参考以下文章