用户登录
用户注册

分享至

chahaoword C语言银行管理系统

  • 作者: 兜里有鱼26867236
  • 来源: 51数据库
  • 2020-04-16

#include <conio.h>

#include <string.h>

#include <stdio.h>

#include <stdlib.h>

char cFile[] = "date.txt";

struct bank

{

char id[10+1];

char psw[6+1];

double money;

};

welcome1()

{

printf("\n\n\t\t欢迎使用虚拟银行自动取款机服务!\t\t\n\n");

printf("请选择功能:\n");

printf("\n=================================================\n");

printf(" || 请输入序号 ||\n");

printf(" || 1.新用户开户。 ||\n");

printf(" || 2.老用户登陆。 ||\n");

printf(" || 3.退出系统。 ||\n");

printf("=================================================\n");

}

welcome2()

{

printf("\n\n\t\t注册须知\n\n");

printf("**************************************************\n");

printf("* 1.请填写您的真实资料! *\n");

printf("* 2.开户首期必须存入100元以上 *\n");

printf("**************************************************\n");

}

welcome3()

{

printf("\n\n\t\t\3 欢迎进入虚拟银行系统 \3\n\n");

printf("\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\n");

printf("\1\1\t 请选择功能:1.取款(最多透资2000); \1\1\n");

printf("\1\1\t 2.存款; \1\1\n");

printf("\1\1\t 3.查询余额; \1\1\n");

printf("\1\1\t 4.修改密码; \1\1\n");

printf("\1\1\t 5.返回主页面; \1\1\n");

printf("\1\1\t 任意键退出. \1\1\n");

printf("\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\n");

}

int search(char* user, char* pwd, char* real_pwd)/*判断帐号是否相同,不相同返回1*/

{

FILE* file;

char user_buff[256], pwd_buff[256];

file = fopen(cFile, "r");

if (!file) return 0;

while (!feof(file))

{

if (fscanf(file, "%s%s\n", user_buff, pwd_buff) == EOF) return 0;

if (!strcmp(user_buff, user))

{

if (real_pwd) strcpy(real_pwd, pwd_buff);

return 1;

}

}

fclose(file);

return 0;

}

int add(char* user, char* pwd, double coin_n)

{

FILE* file;

file = fopen(cFile, "a");

if (!file) return 0;

fprintf(file, "%s %s %.2lf\n", user, pwd, coin_n);

fclose(file);

return 0;

}

int wenjian(char* user, char* pwd,double coin)

{

if (search(user, pwd, NULL)) return 0;

else add(user, pwd, coin);

return 1;

}

zhuce()/*注册*/

{

struct bank *p;

int i=0,k=0,judge1,judge2;

char name[30];

char sex,ch;

char sh[18];

int n;

p=(struct bank*)malloc(sizeof(struct bank));/*给p分配内存*/

welcome2();

printf("请输入您的名字(纯英文):");

gets(name);

printf("请输入您的性别(男:1 女2):");

fflush(stdin);

scanf("%c",&sex);

fflush(stdin);

printf("请输入您的身份证号码:");

gets(sh);

for(n=0;n<strlen(name);n++)/*判断输入信息是否正确*/

{

if(name[n]>='0'&&name[n]<='9')

{

printf("您输入的名字有误!\n");

printf("\n请选择:按1返回主页面. 按任意键退出:");

fflush(stdin);

scanf("%c",&ch);

fflush(stdin);

if(ch=='1'){system("cls");main();}

else exit(0);

}

}

if(sex!='1'&&sex!='2')/*判断输入信息是否正确*/

{

printf("您输入的性别不对!\n");

printf("\n请选择:按1返回主页面. 按任意键退出:");

fflush(stdin);

scanf("%c",&ch);

fflush(stdin);

if(ch=='1'){system("cls");main();}

else exit(0);

}

if(strlen(sh)!=18)/*判断输入信息是否正确*/

{

printf("您输入的身份证号码不全!\n");

printf("\n请选择:按1返回主页面. 按任意键退出:");

fflush(stdin);

scanf("%c",&ch);

fflush(stdin);

if(ch=='1'){system("cls");main();}

else exit(0);

}

for(n=0;n<strlen(sh)-1;n++)/*判断输入信息是否正确*/

{

if(sh[n]<48||sh[n]>57)

{

printf("您输入的身份证号码非法!\n");

printf("\n请选择:按1返回主页面. 按任意键退出:");

fflush(stdin);

scanf("%c",&ch);

fflush(stdin);

if(ch=='1'){system("cls");main();}

else exit(0);

}

else

{

if(sh[18]!='x'&&sh[18]<48&&sh[18]>57)

{

printf("您输入的身份证号码非法!\n");

printf("\n请选择:按1返回主页面. 按任意键退出:");

fflush(stdin);

scanf("%c",&ch);

fflush(stdin);

if(ch=='1'){system("cls");main();}

else exit(0);

}

}

}

printf("请输入您的帐号(10位纯数字):\n");

fflush(stdin);

scanf("%s",p->id);

fflush(stdin);

while(i <strlen(p->id))

{

if((p->id[i] < 48) || (p->id[i] > 57))

{

judge1=0;

}

i++;

}

while(strlen(p->id)!=10 ||judge1==0)/*判断帐号的正确性*/

{

printf("您输入的帐号不正确,必须为10位纯数字!");

printf("请重新输入(10位纯数字):");

fflush(stdin);

scanf("%s",p->id);

fflush(stdin);

}

printf("请输入您的密码(6位纯数字):\n");

fflush(stdin);

scanf("%s",p->psw);

fflush(stdin);

while(k <strlen(p->psw))

{

if((p->psw[k] < 48) || (p->psw[k] > 57))

{

judge2=0;

}

k++;

}

while(strlen(p->psw)!=6 ||judge2==0)/*判断密码形式的正确性*/

{

printf("您输入不正确!密码必须为6位纯数字!\n");

printf("请重新输入密码(6位纯数字):");

fflush(stdin);

scanf("%s",p->psw);

fflush(stdin);

}

printf("请输入您的首期存款:");

fflush(stdin);

scanf("%lf",&p->money);

fflush(stdin);

while((p->money)<100)

{

printf("您必须存入100元以上,请重新输入:");

fflush(stdin);

scanf("%lf",&p->money);

fflush(stdin);

}

if (wenjian(p->id,p->psw,p->money))/*存入文件并输出基本信息*/

{

system("cls");

printf("注册成功!");

printf("您的注册信息如下,请牢记:\n");

printf("名字:");

puts(name);

printf("性别代码:%c\n",sex);

printf("身份证号码:");

puts(sh);

printf("帐号:");

puts(p->id);

printf("密码:");

puts(p->psw);

printf("您帐户里的余额为:%.2lf\n",p->money);

printf("请选择:按1返回主页面. 按任意键退出:");

fflush(stdin);

scanf("%c",&ch);

fflush(stdin);

if(ch=='1'){system("cls");main();}

else exit(0);

}

else/*如有相同帐号,注册失败*/

{

system("cls");

printf("您输入的帐号已经存在!注册失败!\n");

printf("请选择:按1返回主页面. 按任意键退出:");

scanf("%c",&ch);

if(ch=='1'){system("cls");main();}

else exit(0);

}

}

gongneng(char Account[10+1],char Password[6+1],double Money)/*登陆成功后的功能界面*/

{

FILE *ps;

struct bank xin[1000];

int k=0,b=0;

char mima[6+1],Chiose,x;

char count[10+1],word[6+1];

double inmoney,outmoney,addmoney;

welcome3();

fflush(stdin);

scanf("%c",&Chiose);

fflush(stdin);

ps=fopen(cFile,"r");

if (!ps)

{

printf("不能打开文件!按任意键退出!");

fflush(stdin);

scanf("%c",&x);

fflush(stdin);

exit(0);

}

if(Chiose=='1')

{

printf("输入您的取款金额:");

fflush(stdin);

scanf("%lf",&outmoney);

fflush(stdin);

while(!feof(ps))

{

fscanf(ps, "%s %s %lf",&xin[k].id,&xin[k].psw,&xin[k].money);

k++;

}

fclose(ps);

ps=fopen(cFile,"wb");

if (!ps)

{

printf("不能打开文件!按任意键退出!");

fflush(stdin);

scanf("%c",&x);

fflush(stdin);

exit(0);

}

while(!feof(ps))

{

//printf("%s %s %.2lf\n",xin[b].id,xin[b].psw,xin[b].money);

if ((strcmp(Account, xin[b].id)==0)&&(strcmp(Password, xin[b].psw)==0))

{

xin[b].money=xin[b].money-outmoney;

}

printf("%.2lf\n",xin[b].money);

fprintf(ps, "%s %s %.2lf\n", xin[b].id, xin[b].psw, xin[b].money);

b++;

}

}

}

denglu()/*登陆*/

{

FILE *fp;

char account[10+ 1],password[6 + 1],h;

int m=0;

char real_account[10+ 1]; /* 帐号缓存 */

char real_password[6 + 1]; /* 密码缓存*/

double real_money_o=0.0; /*存款缓存*/

printf("请输入您的帐号(10位纯数字):");

gets(account);

printf("请输入您的密码(6位纯数字):");

gets(password);

fp = fopen(cFile, "r");

if (!fp)

{

printf("不能打开文件!按任意键退出!");

fflush(stdin);

scanf("%c",&h);

fflush(stdin);

exit(0);

}

while (m<=2) /*判断是否输入错3次了*/

{

while(fscanf(fp, "%s %s %lf", &real_account, &real_password,&real_money_o) != EOF) /*循环判断帐号密码*/

{

if ((strcmp(real_account, account)==0)&&(strcmp(real_password, password)==0))

{

system("cls");

printf("登陆成功!");

gongneng(real_account,real_password,real_money_o);

fclose(fp);

return 0;

}

}

rewind(fp); /*重新打开文件,进行新一轮的密码验证*/

printf("您输入的帐号不存在或密码不正确!\n请重新输入:\n");

m++;

printf("请输入您的帐号(10位纯数字):");

fflush(stdin);

gets(account);

fflush(stdin);

printf("请输入您的密码(6位纯数字):");

fflush(stdin);

gets(password);

fflush(stdin);

}

fclose(fp);

printf("您输入帐号密码不正确已经3次,您被强制退出系统(按任意键退出)!");

fflush(stdin);

scanf("%c",&h);

fflush(stdin);

exit(0);

}

int main()

{

char chiose;

welcome1();

scanf("%c",&chiose);

getchar();

if(chiose <='0' ||chiose>='4')

{

while(chiose <='0' || chiose>='4')

{

printf("您的输入有误,请重新输入:");

scanf("%c",&chiose);

getchar();

}

}

if(chiose=='1')

{

system("cls");

zhuce();/*注册*/

}

if(chiose=='2')

{

system("cls");

denglu();/*登陆*/

}

if(chiose=='3')

{

printf("谢谢您的使用!");

exit(0);

}

}

打字不易,如满意,望采纳。

哥们 不能编译啊

小学英语重要单词

we these maybe evening he

Chinese Japanese me she policeman

magazine piece people eighteen jeep

meet see between three tree

street sweep need seat clean

speak teacher please mean jeans

beach Easter meat eat bee

sleep tea sweet Halloween believe

belief

puppet blanket jacket basket eleven

English in fifteen fifty

give still him his it

miss office picture sit six

this window animal big children

cinema different fridge ill little

live river sing ticket village

which with eighty everyone family

many anything baby funny lovely

only very sunny kid fish

pig ship hospital drink milk

chick chicken if city rabbit

pin pick kilo holiday Monday

many any anything bed well

welcome very tell telephone pen

next letter help hello guess

get else American address yes

yellow twelve twenty ten spell

seven pencil let eleven egg

dress desk went when breakfast

head sweater bread weather

net check question elephant

best men television lesson red

grandfather hand hat have map

panda that animal back bad

bank camera cap dad fax

jacket Japan Japanese man thank

apple and at bag am

black blackboard can cat family

glad shall carrot rabbit passenger

battle astronaut gram capital happy

pack

basketball fast passport rather father

glass class grass(草) banana can’t

dark car depart farmer card

far smart large barbecue past

aunt dance afternoon grandfather

grandma classroom ask last pardon

party sharpener garden Art cartoon

are March park hard

watch want what wallet was

box clock doctor dog not

office on of orange sorry

stop doll from job shopping

sock wrong fox wash because

soft hot

watermelon water

door for forty or horse

sports morning four airport outdoor

indoor short

all small talk call walk

wall fall ball also always

autumn August

draw saw strawberry

push classroom wood woman could

pull cook peaceful should

July foot goody would

put look book

good football

do who two whose

shoe juice

ruler blue June fool choose

room afternoon school too soon

zoo broom food tooth toothache

noodles cartoon moon boot goose

brother colour come mother some

son glove London lovely monkey

much uncle umbrella bus up

supper plus mum lunch husband

funny duck under number hundred

cup but

touch young cousin country

about London policeman under

banana computer watermelon tiger mirror

panda o’clock welcome teacher visitor

woman today afternoon sister doctor

America Japanese brother number driver

American Japan daughter mother

camera England father flower worker

word world worker work

her hers term

bird girl shirt thirty first

birthday third circle

turn surf hurt Thursday nurse

purse

were early

cake game table take age

baby name favourite grade grape

late radio plane same classmate

race date

today crayon stay day May

away always play

E-mail raincoat rain train wait

They great eight

China find five nice like

rice mine tiger time white

driver kite minus pineapple wife

write behind beside bike child

my by fly cry sky

high right light night bright

fight July goodbye pie

boy toy

toilet join coin noise point

zero OK sofa so radio

only nose hello go those

photo open old don’t close

clothes home hope phone November

smoke

coat boat road goat

yellow know window show snow

snowy low lower blow bowl

brown now how cow town

flower

about blouse mouth mouse trousers

count house playground loudly mountain

around

really theatre

ear hear earphones year dear

nearby here

parent careful Airport air chair

aircondition there where

bear pear hair pair

sure February

单字拼音什么意思

单dān shàn chán Shàn

单 dān

部首笔画

部首:十 部外笔画:6 总笔画:8

五笔86:UJFJ 五笔98:UJFJ 仓颉:CWJ

笔顺编号:43251112 四角号码:80506 Unicode:CJK 统一汉字 U+5355

基本字义

1. 不复杂:~纯。简~。~调(diào)。

2. 独一:~独。~一。~词。

3. 只,仅:做事~靠热情不够。

4. 奇(jī)数的:~日。~号。

5. 薄,弱:~薄。

6. 衣服被褥只有一层的:~裤。~衣。

7. 覆盖用的布:被~。床~。

8. 记载事物用的纸片:~据。传~。名~。

9. 和尚称禅堂的坐床。

详细字义

〈形〉

1. (本义:大)

2. 同本义 [great]

单,大也。——《说文》。段注:“当为大言也,浅人删言字。如诬加言也,浅人亦删言字。”

明清于单辞。——《书·吕刑》。按,夸诞之辞。

夏禹能单平水土。——《国语·郑语》

王之威亦单矣。——《史记·春申君传》

单埢垣兮。——扬雄《甘泉赋》。注:“大貌。”

3. 单独 [single]

单足以喻则单。——《荀子·正名》。注:单,物之单名也。”

4. 又如:单幅门(独扇的门);单跪(弯屈一膝,行半跪之礼。也叫“打千”);单绪(只有一个儿子传宗接代。即单传)

5. 一个 [one]

单,一也。——《汉书·枚乘传》注

今单车来代之。——《史记·魏公子列传》

6. 又如:单介(一人;一个);单味(一味菜肴);单民(只身);单幅(单条;条幅)

7. 孤独;孤立 [solitary;isolated]

令母在后单。——《玉台新咏·古诗为焦仲卿妻作》

8. 又如:孤单(单身无靠;感到寂寞);单孑(只身;个人);单己(只身;个人);单老(孤独无依的老人);单然(孤单的样子);单雄(孤单的雄鸟)

9. 衣物等单层 [unlined]

庶人单衣。——《礼记·儒行》注

晚成单罗衫。——《玉台新咏·古诗为焦仲卿妻作》

10. 又如:单绞(苍黄色的单衣);单账(单层的账子);单席(一重坐席)

11. 衣物单薄 [thin]

可怜身上衣正单,心忧炭贱愿天寒。——唐· 白居易《卖炭翁》

12. 又如:单复(单薄的衣服和厚重的衣服);单虚(单薄空虚);单衾(薄被);单轻(单薄)

13. 衰弱 [weak]。如:单慧(小有才慧);单寒(身体瘦弱;因衣单而受寒);势单力薄

14. 简单;单纯 [simple]。如:单陋(简陋);单议(简单的议论);单调

15. 奇数[odd]。如:单日;单只袜子;单号;单牌(标志五里数的路牌)

〈名〉

1. 记事纸条 [bill]。如:菜单;清单

2. 名册 [list]。如:名单

3. 一大块布,通常是长方形或椭圆形的棉布或麻布,作为床上用品使用 [sheet]。如:床单

4. 打横格的、上面记载关于某项交易的记录、保证或指示的条子、散页或卡片[ticket]。如:某种设备的保修单

〈副〉

1. 仅,仅仅 [only]。如:单则(只;而);不单

<连>

1. 放在两个数量中间,表示较大的量下附有较小的量,用同“零” [and]。如:一百单八将;二百单九年

2. 另见 chán;shàn

常用词组

1. 单摆 dānbǎi

[simple pendulum] 由一无重量的不能伸长而可完全弯曲的线悬挂的点状质量组成的理想摆,可作无摩擦的自由振动

2. 单帮 dānbāng

[travelling trade working on one's own] 指从一地到另一地贩卖商品的个体商贩

跑单帮

3. 单比 dānbǐ

[simple proportion] 前后项都只有一个数的比,如6∶7, A ∶ B

4. 单比例 dānbǐlì

[simple proportion equality] 等号两边都由单比组成的比例式。如a:b=c:d

5. 单兵 dānbīng

(1) [individual soldier]∶一个士兵

单兵训练

(2) [an isolated force]∶指被围困的无救援的军队

6. 单薄 dānbó

(1) [thin]∶天冷时穿的衣服少而薄

(2) [frail;be thin and weak]∶指身体瘦弱;不强壮

(3) [flimsy;insubstantial;feeble]∶指力量薄弱;不充实;人口少

力量单薄

内容单薄

7. 单产 dānchǎn

[yield of per unit area] 单位土地上的年、季产量

8. 单车 dānchē

[bicycle] 即自行车

9. 单称判断 dānchēng pànduàn

[single judgment] 断定某一个别对象是否具有某种性质判断

10. 单程 dānchéng

[one way] 来或去的路程;与“来回”不同

单程车票

11. 单传 dānchuán

(1) [have only one son for several generations]

(2) 几代都只有一个儿子传宗接代

(3) 旧指只受一个师傅或一个流派所传授,不杂有别的流派

12. 单纯 dānchún

(1) [simple;pure]∶简单;不繁琐

(2) [alone;merely]∶独一;纯粹

(3) 只顾 [merely;simply]∶

13. 单纯词 dānchúncí

[singlemorpheme word] 只含一个语素的词。如:山、水、徘徊、吩咐(两个字合起来才有意义)

14. 单词 dāncí

[word] 词(区别于“词组”)

15. 单打 dāndǎ

[singles] 某些球类比赛的一种方式,由两人对打,如乒乓球、网球

16. 单打一 dāndǎyī

[have a one-track mind] 只做一件事或只接触某一方面而不管其他方面

17. 单单 dāndān

(1) [only;alone]

(2) 指从一般中突出个别的人或事物

(3) 只有,偏偏

18. 单刀 dāndāo

(1) [short-hilted broadsword]∶ 一种短柄的砍刀

(2) [single-broadsword event]∶ 中国武术运动项目的一种,表演或练习时只用一把单刀

19. 单刀直入 dāndāo-zhírù

[speak out without beating about the bush;come straight to the point] 原意是勇猛前进,现在则比喻说话直截了当,锋芒甚锐

若是作家战将,便请单刀直入。——宋· 释原道《景德传灯录》

20. 单丁 dāndīng

[young man without brothers] 旧指没有兄弟的成年男子,也指独个儿

凡单丁之身,及茕独而秩养孤者,并蠲今年田租。——《南齐书·武帝纪》

21. 单调 dāndiào

[monotonous;drab;dull] 单一;重复而缺少变化

22. 单独 dāndú

[alone;by oneself;independent;exclusive;separate;single] 独自一个人;不跟别人合在一起

采取单独行动

23. 单发 dānfā

[single shot] 指子弹单个地发射

24. 单方 dānfāng

(1) [folk prescription]∶民间流传的药方,用药不合一般习惯。也作“丹方”

(2) [odd prescription]∶中医方剂学“七方”中的奇方,一般药味为单数,或用一种主药。与“偶方”相对

25. 单方面 dānfāngmiàn

[one-sided;unilateral] 两个或两个以上的方面中的一个方面

26. 单干 dāngàn

[work by oneself;work on one's own;do sth. single-handed] 独自干;在孤立无援时进行

尽管别人愿意帮助,但他坚持单干

27. 单干户 dāngànhù

[a peasant family still farming on its own after agricultural cooperation] 原指没有参加农业合作社的个体农户,与个体手工业者。现在常用来比喻愿意单独工作,不想与人合作的人

在这几年的科研工作中,他一直是个单干户,没有和别人合作

28. 单杠 dāngàng

[horizontal bar;horizontal bar gymnastics] 水平位置固定的杆,用于体操运动,也指使用这种器械比赛的体操项目

29. 单个儿 dāngèr

(1) [alone;individually]∶单独一人

他单个儿走了

(2) [one of a pair or set;an odd one]∶一组中或两个成对的中的一个

这套酒杯不单个儿卖

30. 单挂号 dānguàhào

[registered without receipt] 邮件的一种,指没有回执的挂号邮件

31. 单轨 dānguǐ

(1) [single track]

(2) 单线的铁道或电车道

单轨电车

(3) 比喻只通过一个系统实施管理的制度,与“双轨”相对

变价格双轨制为单轨制

(4) [narrow track]∶只容得下一辆车通行的狭窄道路

32. 单寒 dānhán

(1) [thinly clad]∶衣服单薄,感觉寒冷

(2) [poor;of humble family]∶旧指出身寒微,家世贫穷

33. 单簧管 dānhuángguǎn

[clarinet] 一种木管乐器。俗称黑管

34. 单机 dānjī

[light engine] 行驶时不挂车辆的机车,或仅挂守车的机车

35. 单机 dānjī

[single computer unconnected with another] 未联网的电子计算机

36. 单季稻 dānjìdào

[single harvest rice] 在同一块田中,一年只能收获一次的稻

37. 单价 dānjià

(1) [unit price]∶商品的单位价格

(2) [univalent]∶化学名称,指一价的通常只能和另一种元素的一个原子结合的

38. 单缣 dānjiān

[silk unlined clothing] 单褂绢绸

汝梳双髻,披单缣来。——清· 袁枚《祭妹文》

39. 单间儿 dānjiānr

[separate room;single room] 宾馆、饭店内供单人用的小房间

40. 单晶硅 dānjīngguī

[monocrystalline silicon] 硅的一种,是重要的半导体材料

41. 单居 dānjū

[keep house] 一个人过日子

42. 单句 dānjù

[simple sentence] 不可再分析出分句的句子

43. 单据 dānjù

[receipt] 收付钱款或东西的凭据

44. 单口 dānkǒu

[monologue] 只有一个演员进行表演的曲艺表演形式,如单口相声

45. 单口相声 dānkǒu xiàngsheng

[monolog;cross talk performed by one actor only] 曲艺名词。又叫单活、单春、单笑话。相声形式之一,指由一个演员单独对观众讲笑话,节目长短不一,有讲二三十分钟的“小笑话”,也有数日连讲的“大笑话”

46. 单恋 dānliàn

[unrequited love;one-sided love] 指单相思

47. 单列 dānliè

[single file] 一个跟一个成单行走动的人、动物

48. 单门独户 dānmén-dúhù

[a single isolated house] 一个院里只住一户,也指一院一户的住宅

49. 单篇 dānpiān

(1) [individual article]

(2) 不相连接的文章

(3) 一篇一篇地发行的文章

50. 单枪匹马 dānqiāng-pǐmǎ

[single-handed;go it alone] 一枝枪,一匹马。比喻独自冒险冲向目标,亦喻指一个人单干

兵散弓残挫虎威,单枪匹马突重围。——五代楚· 汪遵《乌江》

单 shàn

基本字义

1. 姓。

单 chán

基本字义

1. 〔~于〕中国古代匈奴君主的称号。

2. (单)

详细字义

1. 单 chán

2. 另见 dān;shàn

常用词组

1. 单于 chányú

[chief of the Xiongnu in ancient China] 汉时匈奴人对其君主的称呼。泛指外族首领

月黑雁飞高,单于夜遁逃。——唐· 卢纶《塞下曲》

单于使卫律治其事。——《汉书·李广苏建传》

单 Shàn

详细字义

〈名〉

1. 地名。单县 [Shan county],在山东省西南部

2. 姓(春秋有单豹)

3. 另见 chán;dān

隐藏更多释义

好看的Q名。要英文

The meteor メ love uFrozen JueLianThe man ǐˇ. L ё m ōл Xin mood"& 尐儍苽 - (℡,ぜァ good. The lossご silence Wei 噵 ~ ご⒏ 謧⒏ abandon - 牭 a strolling d"箹椗 *He behaved 7 鈤 sunnySmoke away ゞ setback.. are.mbq Xin s ǐ,!Ping 瓂淂 eh buried loveO ń I s iov ┊ tenth "Carrizo shore | youan turn ┊ frowsty ▼ * -.2 冄 1 # 4.ぺ pure truth about fermentation ﹎Chun 粨 se ╰ - miss you蓱 Guo 傱 Wei *.鈊. Lei.. ; *, love 藸...Baby blueAngel white ˇ,She is lonelier than the fireworks ˇMiguel: yes yes humanity badMe: Cha 桖騩灆 cesium * I f * alpha- 2008 crush on ScorpioT ēāм retreated back /,Fine 兲 salmon salmon *.⒎ 8 fall. .Habits み, "Ο retreated back `Decadent ﹌Unknown Lai should not の QuZhong ren scattered.Best wishes のあ remainder Ai┲ ﹊ lolita.. |Red; Burning man ゛... 嬒 | | still continue▍ a 朲° '颲 Ai injury o marks尐 吜 fishing ﹎ lazy d s nobilityζ. Black Kong τ. 兲 acerbityぐ 紷紷 pig ☆ manCLouRfuL ミ fish┭ ° PUMA times.丬⒏ four dolphinsā inscription 錵ǒ prerequisite 宔The arctic づ muller blueJin cesium 娍寳 ゛訞 static 7,000 7,000You how 庅 b ǔ in my 裑 demote) search-evade antagonistic)Disorderly ⒎ eight bad dx┌; 翫 evil-aligned ` 纞灬. _Dian 3. Pour homonyms~  ̄ bug where fly. 灬Pass じ☆ ve saidΦ forget love laterForget the sadness ЮKe ⒏ Ke Yi plutonium outfit strong☆ ﹎尐の Zhu pig bad 壊ヤ hai Jue gasζ vinegar TanZi υPack beta was recovering/ open Xin baby cloudLate d ē legend 尐 girls. の coque meaningShe who who dalai who} {跘 20 oath 峩 extends condolences consoles⒐ four 峩 shy candyOne Sunday afternoon (one Sunday afternoon (u ▓忔 eh Hui pigヤ 1 ﹎. Only Zhu ooSpirit ≌ major 悳 from"O unbelieving Feng 鈊 lock (_ Ο will5 Ο哖 after 2Came 螚 disorderly ┄ - hairstyle don't ━╋ uniqueミ session, 7 satin continous needleU play 緟щǒ also S № plutonium understandTranslation is an ode 鯯; 陥 sword ┡ ?┅☆ Xin wind flyDesigned 訫 alone さ *Shun behaved. 繎 zi."Smoke book winding"Omega ǒ drops 寳 baiFalse r ǘ eu (1) 兲㊣ er eight via coque loveお scholarships-from ℃ far シ furnace-roughChi qing ぼゆ Shao Lian↑ Pi kind Lian Hao pressぉ unsurpassed ゞ soloThe man m_ mace expressDaN ` t c ǐ﹎ discusses some related problems"O unbelieving 閺 smoke Wei ぷ緈 shipped coque tear u♀ east-zhejiang warm-hearted plutonium this cameG. adjustable d ē rowrrf liャ sin brilliantlyぁ rains あ RMB flocculent噕 fly/tp at 霿兲 hall ⊙ indent degrees oBeta ЪЧ dance a ヅAngel ぺ嫙嵂So the man ℡尐 dragonァ Zhu Gong matched ヤヤ; Put aside [shallow 灬メ[埖 open 埖 x]藯 blue づ maple leaf āMonth fell ヅ uzziah デ crowYou 乄 Gu wo weishan 単灬 lovely cat 灬 fcucking ˊё tears may ぷ ZuMen quer-civorus ゼ鱫 milk狅 ££彁 frugal ridgesポ (4) 鬺き outrageous ず尐 Jue/aiq thief down々 Kun f.p Zhi Dou £Bad ヤρ I 滊蘰 踄繧 (_ 鍴 灬せ word Жご壊 acridone ShuangChen martyrs head)A needle О know/mn wind oFlash ☆ u ~ dance Ice﹎ dah | orchids┕ nonsense ┑怺ぐ constant 兲耂 | | ▊ like onesIncomplete snail climbKong room wimple for- you lock 鈊Enterprise doesn't theme of magnesiumRobert o. Shi Shang ba Ь I \ ī r m g O 蕶薍 ﹎ニ siliery thread.Hou will 墲 period,* end. andBirds grief doesn禞 Hui Liang adjustable..U. ‖ needle dam way.Sweet testimony./ \ \ love have to/る凮 residual あ accelerating degrees ·Second-ranking _. Xiao qi, shivaA а omega īτ ·ぽ crayon 尐噺ゆ·.Smoke 濄灬·誮 after らBroken ¢points'.I don't η·Ν I cryThe man, ゛ we are Zhi between 紸 Angle ·· ka檌 og 栤杺·O﹎ promise to love you 寳 barium, ルSmile, o ^ ┢┦ ap Ρ y^ ^ 0, 滊τ a flaming retreated back _ べ· white s ё ChristmasWhere fish, so... ·` ╲ beta alpha b ゾ. & ·An £problem appropriateо 2008, o о lie extends condolences consoles oメ Zhu こ injured, incompleteに 鯳ī cat, be ゞ·The 兲 wheel {othermeasuring ǐ·ゞ尐(ning ↘ colourful,苿 & 緍· j of& "Appropriate 煈 per 1,000 崊 "salon des independants tree·. 亻 solidヽ ㄐ born,Listening to ηǐメ rainThe man 葿 M,の·· despiseth し ov╰ *. O u о Оミつン narcissism, ンǒ ^ ^ 乄 township, ㄨ guy"O unbelieving Ke ┽ - small,Love, you came one born·... Fireworks * * ·╰Dan つ iel あ· o ヤ pseudo you change well-behaved¢wind ☆·· is incomplete§ § snow Jill, badly Уǘ PI ·Θ move Θ· othermeasuring move㊣ joon cat ㊣∩ I love w, 2008· - break feeling quit love *"O unbelieving 嘙 oh, black bears, youゞ soulmate ゞ·ぁā · embalm embalm {哖 _ less オ frivolous

谁知道宫的插曲叫什么名

叫《鹦鹉》

试听地址:

http://mp3.baidu.com/m?f=ms&tn=baidump3&ct=134217728&lf=&rn=&word=howl+%F0%D0%F0%C4+&lm=-1

下载地址:

http://211.62.52.72/...0513060003_128kbps.wma

求哪位高人给我写一篇《汤姆叔叔的小屋》的读后感,要用英语写的.....

A few days ago, I Stowe read his fame as the Uncle Tom's cabin. Honest, kind, devout religious Uncle Tom; more brave than, clever to learn half blood slave of George; mercenary, merciless slave-mongers black Lee; devoid of humanity, and conscience funeral Lei Geli; righteousness, carried by the Saint Clare and other vivid characters left a deep impression on me. Make me the most memorable is a smart and lively, but full of wild, later being train self-esteem love slave girl tuopuxi.

Tuopuxi is the best black Black, a round pair of bright eyes shining like a glass beads, looks a bit weird, the look on his face is a wonderful combination of smart and crafty Kat, just like a Goblin. She stole, stole lying after she assumed a innocent expression; she's improper behaviour, all the people that made her revenge, prank; she'd take advantage of the master, crazy hours, upside down House. Owner tried all means to punish her for her to educate her, trying to change her bad habit, but of no use, it is only because there is no love!

Think about it! this was originally a lovely child, born enslaved, all her only belong to their owners, master of the so-called dominated her fate. She was brought up in the slave owners called growing up in her habit of lying, stealing of bad habits, it turned out that she is beautiful and pure and defiled the soul. This lack of dignity, experiencing the separation, suffering all day flogging case, how can I have noble virtues and firm faith? only pure, good, unselfish love in order to save her soul! when Angel Eva love when she said to her, tears over the eyes of tuopuxi, her mind was a ray of Sun of love. Sure enough, after tuopuxi better, her efforts to care for others. This is called, lecturing will always fall short of the results, a word of love transcends all! that's the power of love!

In our lives, there are also many children like tuopuxi. They conduct, and not loving, unreasonable, so don't hate him, to understand with love, tolerance, stripped off something outside the green shoots of a layer of Brown, probation numb the heart with love. To always bear in mind that; the power of love is great, paramount! this masterpiece of the Uncle Tom's cabin has been published for more than 150 years, and today, it can still deeply moved by the readers, but also because the author advocates a fraternity of the book and disappear from the slavery of humanity today is the eternal pursuit of mankind.

The book Uncle Tom's cabin are dominated by the same theme: the slavery of sin and immorality. When Stowe in her words--for example, writing to the secondary theme of moral authority, and provided by the Christian rescue of mother – she would emphasize the possibility of links between these themes and the horrors of slavery. Almost in novels of each page in, Stowe Lady are in Active promote with "slavery immoral" this a theme, some when she even will change story narrative of tone, to to people "sermons" slavery of damage nature (such as, in contains with Tom to South State of ships Shang, has one white female so says: "slavery of most terrible of Department on is on feelings and family of trampling--such as breaking up people of flesh and blood. ") Through the slave system characterization of people split up families, situofuren words show that slavery was evil. "In a free land, fugitives were safe. ”

Because the situofuren believe that motherhood is a "model of morality and ethics in the life of all Americans," and believe that the only woman to have the United States from slavery in the hands of the devil out of moral authority; this expression is the Uncle Tom's cabin in another topic: female moral force and sanctity. In the book, this example of the role of Eliza--one with a young son runaway slaves (and eventually reunited with their family), or small Eva – she is considered a "good Christian"; it is through this role, Lady Stowe shows this view: women can save the people around them, even if it is not a moral person. Also referred to the comments but then, the housewives, at situofuren the female roles in General images of spokespeople appear, rather than real women. In addition, Mrs Stowe's novel "reiterated the importance of a role played by the women of influence", as well as subsequent decades contributed to the feminist movement in road paving.

Stowe reveals his Puritan religious beliefs to the end of the novel, and extended to all the topics; her explore the nature of the Christian and believed that Christian theology has irreconcilable contradictions with slavery. When Eva died, Tom pleaded with beloved Saint Claire, "looking back on Jesus" when Tom died, qiaozhi·xieerbi with "being a Christian nice" when you come to praise him, which topics are most clearly shows. Because of the Uncle Tom's cabin, themes represent a significant component of the Christian religion, and because Mrs Stowe novels in the feeling on the issue directly and frequently religious beliefs, this novel has often been considered "homilies".

是英语的哦!

谁帮我把 粤语歌曲→爱不疚 林峰(粤语) 翻译成拼音

http://www.scribd.com/doc/10520577/

楼主要的是注音吧

上面的link是我自己根据发音打的,可能不太准 ,是一个word文档,可以下载的

楼主自己试一下看看行得通不

转载请注明出处51数据库 » chahaoword C语言银行管理系统

软件
前端设计
程序设计
Java相关