he(she)是人称代词,his(her)是物主代词,him(her)是人称代词的宾格。
例:He(She) is my father(mother).他(她)是我的爸爸(妈妈)。
His(Her) son is my student.他(她)的儿子是我的学生。
This book is belong to him(her).这本书是他(她)的。 他们都是代词。he 是主格,“他”用于主语,可以引导一个句子。his是形容词性物主代词,表示他的后要加名词。him是 宾格,“他”用在动词后或是介词后。但有时his也同样是名词性物主代词“他的”,相当于his+名词,也就是其后不要紧跟名词了。
He does his homework at home .
I like him . Give it to him .
My bike is red ,but his is black .这句中的his相当于“他的自行车”就是his bike .
明白吗??he是男人的他,his是男人他的,she是女人她he 他 代词 作主格
his 他的 形容词性的物主代词 做定语
him 他 代词 作宾格he 是主格,在句中作主语he is a teacher.
his 是形容词性物主代词,他的,修饰名词his bag
him是宾格,做宾语,放在动词之后。i love him.she,her,she
6,c中toupper的用法怎么用啊
int toupper(int c);包含于ctype头文件中,如果c是小写英文字母,则转换为大写,其他字符不变。#include <string.h> #include <stdio.h> #include <ctype.h> int main(void) int length, i; char *string = "this is a string"; length = strlen(string); for (i=0; i<length; i++) string[i] = toupper(string[i]); } printf("%s\n",string); return 0; }String string1("abcd");String string2=string1.toupper();string2="ABCD";#include "iostream "#include "string "using namespace std;int main()string s;int i;char c;cout < < "Enter a string (q to quit): ";cin> > s;while(1)if(!strcmp(s.c_str(), "q "))break;for(i=0; i < s.length(); i ++)c = _toupper(s[i]);cout < <c;}cout < <endl < < "next string(q to quit): ";cin> > s;}cout < < "Bye " < <endl;return 0;}