hao to have conversatians 英语作文

hao to have conversatians 英语作文,第1张

Starting a conversation with a stranger can be daunting, but it doesn’t have to be impossible

Every

conversation runs its course within a similar outline: making first

contact, introductions, speaking with each other, and then ending the

conversation - hopefully with plans to meet again To navigate these

sometimes scary but usually rewarding waters, read on

Firstly,

Comment on an item that you both share in your immediate surroundings,

such as the long lineup you’re both waiting in or the wobbly chair next

to you By focusing an item you can both experience, you’re removing any

potential awkwardness with a canned comment

Secondly, Sometimes a

look is all that’s needed to break the ice When faced with a person you

find attractive, why not give them a genuine, 3 second smile You may

be surprised when the object of your happiness starts a conversation

with you, instead

Thirdly, you need some quick ideas that can work

in a pinch: Current event topics of interest to you; The last movie you

watched; A comment about the event you’re attending, with a follow-up

question asking how they heard about it

In a word, Focus on taking

your own experiences and weaving them in with the other person’s

responses By doing so you’ll be forging a connection with the person,

creating hooks of information with which to start a conversation at a

later date To ensure that you are actually conversing, and not just

bantering back and forth in a quick succession of questions and answers,

try to remember these key points

望采纳谢谢

#include<iostream>

using namespace std;

void enter(intm)

{

for(int i=0;i<10;i++)

cin&gt;&gt;m<i>;

}

void key(intm)

{

int max=m[0],min=m[0],n=0,k=0,z;

for(int i=1;i&lt;10;i++)

{

if(max&lt;m<i>)

{

max=m<i>;

n=i;

}

}

for(int i=1;i&lt;10;i++)

{

if(min&gt;m<i>)

{

min=m<i>;

k=i;

}

}

if(n==0&&k==9)

{

z=m[0];m[0]=m[9];m[9]=z;

}

else if(n==0&&k!=9)

{

z=m[9];m[9]=m[n];m[n]=z;

z=m[0];m[0]=m[k];m[k]=z;

}

else

{

z=m[0];m[0]=m[k];m[k]=z;

z=m[9];m[9]=m[n];m[n]=z;

}

}

void print(intm)

{

for(int i=0;i&lt;10;i++)

cout&lt;&lt;m<i>&lt;&lt;'';

}

int main()

{

int ans[10];

enter(ans);

key(ans);

print(ans);

return 0;

}

扩展资料:

include用法:

#include命令预处理命令的一种,预处理命令可以将别的源代码内容插入到所指定的位置;可以标识出只有在特定条件下才会被编译的某一段程序代码;可以定义类似标识符功能的宏,在编译时,预处理器会用别的文本取代该宏。

插入头文件的内容

#include命令告诉预处理器将指定头文件的内容插入到预处理器命令的相应位置。有两种方式可以指定插入头文件:

1、#include&lt;文件名&gt;

2、#include"文件名"

欢迎分享,转载请注明来源:品搜搜测评网

原文地址:https://pinsoso.cn/meirong/3201800.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2024-02-09
下一篇2024-02-09

随机推荐

发表评论

登录后才能评论
保存