http://speakspeak.com/resources/english-grammar-rules/various-grammar-rules/either-neither-both

One of the tricky things about eitherneither and both is knowing if they should be followed by singular or plural nouns and verbs.

The table below explains eitherneither and both, and the rules for what should follow them.

Either, neither, both
We use eitherneither and both when we are talking about two things.
either = one OR the other Would you like tea or coffee? ∼ Either; I don't mind.
(= 'You can give me tea OR coffee; I have no preference.')
neither = not one and not the other Would you like ham or beef in your sandwich? 
∼ Neither; I'm a vegetarian.

(= 'I don't want ham and I don't want beef.')
both = the first AND the second I take both milk and sugar in my coffee.
(= 'I take sugar. I also take milk.')
We use either with a singular noun.
We use either of with a plural noun.
We use a singular verb with either andeither of.
either car
either of the cars
Either day is fine for me.
Either of the days is fine for me.
We use neither with a singular noun.
We use neither of with a plural noun.
We use a singular verb with neither andneither of.
neither house
neither of the houses
Neither day was suitable.
Neither of the days was suitable.
We use both with a plural noun. both houses
both of the houses
Both (of) my brothers are tall.
We use of before the pronouns usyou,them. both of us, both of you, either of them, neither of them, etc.
Between of and a noun we use these, those or my, your, John's, etc., or the. both of those houses, neither of mybrothers, both of John's sisters, either of the cinemas

随机推荐

  1. 开放通用Api,总有你喜欢的

    接口文档 目录 通用 更新记录 接口列表 一.福彩-双色球接口 指定期号中奖号码 最新中奖号码信息 获取双色球中奖信息列表 二.节假日及万年历 指定日期的节假日及万年历信息 指定多个日期的节假日及万年 ...

  2. python中的__iter__ __reversed__ __next__

    __reversed__ 返回集合的倒叙迭代器,如果没有实现这个方法,reversed()会去使用__getitem__和__len__来实现 介绍__next__和 __iter__方法需要了解下可 ...

  3. 【mongoDB】 分享系列

    mongoDB 作为一个非关系性数据库(功能很像关系型数据库) MongoDB 之一 MongoDB是什么 MongoDB 之二 增-删-改-查 MongoDB 之三 数据类型 MongoDB 之四 ...

  4. BAT获取FTP指定文件

    以下两个文件放在同一目录下 getfile.bat文件内容如下: @echo offftp.exe -i -s:getfile.txt 192.168.1.2(更换成你的ip,参数之间有空格)paus ...

  5. Oracle SQL部分练习题

    SQL练习题        注:查询列表不建议用 “*” 1.列出至少有一个雇员的所有部门: a. select * from dept where deptno in(select distinct ...

  6. webpack2.0学习

    1.进到指定的目录下,新建自己的文件名 mkdir webpack-test 创建你的项目名称或者你己有的项目名称cd webpack-test npm initnpm install webpack ...

  7. C语言:指针实现交换两个变量的值

    用指针交换两个变量的值(10分) 题目内容: 用指针交换两个变量的值 主函数参考: int main( ) { int a,b; scanf("%d%d",&a,& ...

  8. 【LOJ】#6436. 「PKUSC2018」神仙的游戏

    题解 感觉智商为0啊QAQ 显然对于一个长度为\(len\)的border,每个点同余\(n - len\)的部分必然相等 那么我们求一个\(f[a]\)数组,如果存在\(s[x] = 0\)且\(s ...

  9. 【LOJ】#2114. 「HNOI2015」菜肴制作

    题解 把所有边反向 从小到大枚举每个点,把每个点能到达的点挑出来,判完无解后显然是一个DAG,然后在上面求一个编号最大的拓扑序,把这些点全部标记为已选,把每次求得的拓扑序倒序输出 代码 #includ ...

  10. Spark streaming的正确使用。。

    转自http://bit1129.iteye.com/blog/2198531 代码如下: package spark.examples.streaming import java.sql.{Prep ...