one or more multiply defined symbols found

大天龙2022-10-04 11:39:542条回答

已提交,审核后显示!提交回复

共2条回复
冲上天空找月亮 共回答了16个问题 | 采纳率68.8%
one or more multiply defined symbols found
回答:
此英语提示经常在C语言编程时出现,一般出现的是整个句子:
fatal error LNK1169:one or more multiply defined symbols found;
此属于编译联接的常见问题之一,原因是在不同的源文件重复定义变量.
先分析下英语原文:
1)one or more multiply defined symbols 是主语,而one or more multiply 的词义为:一个或多个的,其中multiply的词义(adj.) 多层的;多样的;defined symbols :定义符号
2) found(v.)发现,找到;在原句中充当谓语;
整个短语的意思是:发现一个或多个多重定义符号;或:一个或多个多重定义符出现;(即:你需要检查源代码中,有没有重复定义的符号).
诚望对你能有所帮助.
1年前
hdzeaqa9s 共回答了2个问题 | 采纳率
"一个或多个多重定义符号"
1年前

相关推荐

帮我翻译中文Check out my Multiply siteI set up a Multiply site wit
帮我翻译中文
Check out my Multiply site
I set up a Multiply site with my pictures, videos and blog and I want
to add you as my friend so you can see it. First, you need to join
Multiply! Once you join, you can also create your own site and share
anything you want, with anyone you want.
Stop e-mails, view our privacy policy, or report abuse:
http://multiply.com/bl/NaPD4FzlX4ICqV69EANTZA
We haven't added your email address to any lists, nor will we share it
with anyone at any time.
Copyright 2009 Multiply Inc.
6001 Park of Commerce, Boca Raton, FL 33487, USA
xueyu11051年前1
十楼飞来骨 共回答了18个问题 | 采纳率94.4%
Check out my Multiply site
I set up a Multiply site with my pictures,videos and blog and I want
to add you as my friend so you can see it.First,you need to join
Multiply!Once you join,you can also create your own site and share
anything you want,with anyone you want.
来看看我的multiply网站
我设立了一个multiply网站包括有图片,视频和博客,我想
将您添加为我的朋友,您可以看到它.首先,您需要加入
multiply一旦您加入,您还可以创建您自己的网站,并且和任何人分享您的任何
东西
希望能帮到lz
one or more multiply defined symbols found怎么回事啊
one or more multiply defined symbols found怎么回事啊
#include "windows.h"
LRESULT CALLBACK WndProc(HWND,UINT,WPARAM,LPARAM);
int WINAPI WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow)
{
HWND hwnd;
MSG Msg;
WNDCLASS wndclass;
char lpszClassName[]="窗口";
char lpszTitle[]="my_windows";
wndclass.style=0;
wndclass.lpfnWndProc=WndProc;
wndclass.cbClsExtra=0;
wndclass.cbWndExtra=0;
wndclass.hInstance=hInstance;
wndclass.hIcon=LoadIcon(NULL,IDI_APPLICATION);
wndclass.hCursor=LoadCursor(NULL,IDC_ARROW);
wndclass.lpszMenuName=NULL;
wndclass.lpszClassName=lpszClassName;
if(!RegisterClass(&wndclass))
{
MessageBeep(0);
return FALSE;
}
hwnd=CreateWindow(lpszClassName,
lpszTitle,
WS_OVERLAPPEDWINDOW,
CW_USEDEFAULT,
CW_USEDEFAULT,
CW_USEDEFAULT,
CW_USEDEFAULT,
NULL,
NULL,
hInstance,
NULL,
);
ShowWindow(hwnd,nCmdShow);
UpdateWindow(hwnd);
while(GetMessage(&Msg,NULL,0,0))
{
TranslateMessage(&Msg);
DispatchMessage(&Msg);
}
return Msg.wParam;
}
LRESULT CALLBACK WndProc( HWND hwnd,
UINT message,
WPARAM wParam,
LPARAM lParam
)
{
switch(message)
{
case WM_DESTROY:
PostQuitMessage(0);
default :
return DefWindowProc(hwnd,message,wParam,lParam);
}
return (0);
}
这是我的程序,为什么编译通过 连接的时候出现one or more multiply defined symbols found 的错误啊 郁闷阿 我是新手 请直接改到我的程序上
布拉格黄昏的厕所1年前1
jesshen 共回答了11个问题 | 采纳率90.9%
不知道你是什么问题
按以下步骤 重建
双击vc打开
新建 工程 选win32 Application
加入文件名 默认项 完成
新建 C++ Source File源文件 输入文件名 完成
粘贴你的代码
插入下面一行
wndclass.hbrBackground=(HBRUSH)GetStockObject(GRAY_BRUSH);
看看能不能编译通过 运行出来了
"multiply "除了“乘法”,还有其它的意思吗?
kk摩托1年前3
囊中zzz羞涩 共回答了15个问题 | 采纳率100%
乘,(使)相乘
His son is learning to multiply and divide.
他儿子正在学习乘法和除法.
(使)增加
Spending on military equipment has multiplied in the last five years.
过去的五年中军事装备的开支大大增加.
(使)繁殖
When animals have more food,they generally multiply faster.
动物在有较多的食物时,一般繁殖得较快.
用multiply完成下列句子:
用multiply完成下列句子:
1、6乘以5等于30.
6__________________is/makes 30.
2、如果你喜欢的话,我还可以举出更多的例证.
I can_______________if you like.
3、那样的话,中国的人口会继续增长.
In that case,the population of China will________________,
xiaofeng20021年前1
lamuguo 共回答了13个问题 | 采纳率92.3%
1.6 (multiplied by 5)is/makes 30.
2.I can (multiply instances) if you like.
3.In that case,the population of China will (continue to multiply).
one or more multiply defined symbols found.
one or more multiply defined symbols found.
#include
int main()
{
int age;
printf("Enter age");
scanf("%d",&age);
printf("g=%d",age);
switch(age)
{
case 2:
case 3:printf("Enter Lower classn");break;
case 4:printf("Enter Middle classn");break;
case 5:
case 6:printf("Enter Higher classn");break;
default:printf("Can't enter n");
}
}
就是用VC6.0做个作业时出现的问题.
如烟ry1年前1
zcmyyx 共回答了15个问题 | 采纳率86.7%
一个或多个多重定义的符号
make your money.multiply whit usmultiply whit
make your money.multiply whit usmultiply whit
这是在一个视频上看到的 那个视频很有意思.这是俩句话 请牛人帮我解答下.
鱼小邪1年前1
mada110 共回答了21个问题 | 采纳率90.5%
应该是multiply with us
意思大概如下:
挣钱吧 和我们一起让钱增加让钱增加
【英语】multiply by 和multiplied by 有什么不同?
遗弃自己1年前1
spring_ap 共回答了20个问题 | 采纳率95%
multiply by 用于数学 指数字相乘 比如 5x3 multiply 5 by 3,multiplied by 是被动语态 5 multiplied by 3 is 15
2个数字相乘,比如3*4,“乘”用time(动词)或multiply表示
2个数字相乘,比如3*4,“乘”用time(动词)或multiply表示
3X4=? How much is three times four?
3X4=12
Three times four is/are twelve.
Multiply three by four,we get twelve.
Three multiplied by four makes twelve.
三乘以四等于十二
但是多个数字相乘,比如5*5*1,这个用英语怎么说?
小小船儿bbbb1年前4
飞天兔 共回答了13个问题 | 采纳率84.6%
five times five times one
英语翻译The teacher of my lifeAdd,subtract,multiply and divide,i
英语翻译
The teacher of my life
Add,subtract,multiply and divide,is not you make!Praise,not verses in your honor!You use knowledge,then open our ideal dew of flower,Your heart RunYu spring,the beauty of our sentiment.Are you in life constantly remind me:be careful,cautious,hard,improve.I am not your best student,but you are my most respected "teacher".
When I was a child,she always give me a warm,give me happiness.Wind comes,she was hugging me afraid I catch a cold,Hot summer comes,she sat in a XiaoMuDeng,took a little breeze fans for me,but she has full head big sweat,wet clothes.She is my mother.
As for several years passed,is but I still remember it.In fifth grade,my second unit test fared quite poor,compared with the first unit,are sent 20 points,I really go back or not,is it back?I sat in the park,reflect the stairs.
Later,I returned home,the paper gives a mother.To my surprise,mother will not hit me,also very gently say with me:"I have a good food to eat,heat!" I couldn't help JiShuaShua,tears streaming down.Mother said:"the kid to comfort me,failure and frustration is not the most terrible,terrible is you yourself have no confidence to win it." I nodded,wiping away tears.
When the final exam,I unexpectedly announced won the first prize!This is I never had the honour.When students ask me why I can take an examination of the first time,I will tell him:"because in life,I have a teacher."
zhanshilyb1年前1
hubeiezhou 共回答了16个问题 | 采纳率93.8%
我的生活的老师
Add,减去,倍增并且划分,不是您做!称赞,在您的荣誉的不是诗歌!您使用知识,然后打开花我们理想的露水,您的心脏RunYu春天,我们的情绪秀丽.是您在生活中经常提醒我:小心,谨慎,坚硬,改善.我不是您的最佳的学生,但是您是我的受尊敬的“老师”.我是孩子的When,她总是给我一温暖,给我幸福.风来,她拥抱我害怕我捉住冷,热的夏天来,她在XiaoMuDeng坐了,采取了我的小的微风风扇,但是她有充分的顶头大汗水,湿衣裳.她是我的母亲.
As几年通过了,是,但是我仍然记得它.在五年级,我的第二个单位测试相当经历了贫寒,比较第一单位,被送20点,我真正地回去或没有,我在公园坐了,反射台阶.
Later,我回来了在家,本文给母亲.对于我的意外,母亲不会击中我,非常轻轻地也说与我:“我食用吃好的食物,加热!” 我不可能帮助JiShuaShua,放出的泪花下来.母亲说:“安慰我,失败和失望的孩子不是最可怕的,可怕是您你自己有赢取的信心它”.我点了头,擦去泪花.
When期终考试,我意想不到地宣布了赢取了一等奖!这是我从未有荣誉.当学生问我我为什么可以参加考试第一次,我将告诉他:“因为在生活中,我有一位老师”.
can,modern,subtract,divide,electronic,multiply,calculators,a
can,modern,subtract,divide,electronic,multiply,calculators,add,and
把单词连成句子
绚目1年前1
uiop2002 共回答了19个问题 | 采纳率84.2%
Modern electronic calculators can add,subtract,multiply and divide.
multiply choiceboth the plan maker and the program manager b
multiply choice
both the plan maker and the program manager blame______for the collapes of the building.
A another B the other C other D each
tell me the reason
Manchurian1年前2
卞老二 共回答了19个问题 | 采纳率100%
B
设计者与施工方都将建筑倒塌的责任推诿给令一方
这句话什么意思,非常急Multiply value(s) obtained for sample(s) by the a
这句话什么意思,非常急
Multiply value(s) obtained for sample(s) by the appropriate factor to correct for the sample dilution.
樱乐俊1年前2
wendy1002 共回答了19个问题 | 采纳率89.5%
由样本得到的多种数据通过正确的因素来修正样品稀释
multiply your death divide by sex add up the violence and wh
multiply your death divide by sex add up the violence and what do you get?
eastmst1年前1
cici106 共回答了15个问题 | 采纳率93.3%
pleasant sensation
6 multiplied by 3 is 18. 6 multiplied 3 is 18. 6 multiply 6
6 multiplied by 3 is 18. 6 multiplied 3 is 18. 6 multiply 6 is 18.这三种都对吗
西湖小子1年前3
zi_dian 共回答了18个问题 | 采纳率88.9%
正确的说法应该是:
Multiply 6 by 3 is 18.
6 multiplied by 3 is/makes 18.
根据我目前知道的,介词都是用by.
add subtract multiply divide用法(固定搭配等0
add subtract multiply divide用法(固定搭配等0
make sth 加形容词还是副词
person_11年前2
5hjn 共回答了13个问题 | 采纳率100%
Add one and two and you get three.
Subtract one from two and you get one.
Four multiplied by five is twenty.
Nine divided by two is four and a half.
vhdl 程序运行时提示Error:Assertion error:CLK1_MULTIPLY_BY(0) must b
vhdl 程序运行时提示Error:Assertion error:CLK1_MULTIPLY_BY(0) must be greater than 0.
具体提示如下:-- Cause:The specified parameter has a value that is not greater than 0
x05-- Action:Set the parameter to a value that is greater than 0
x05ASSERT CLK5_MULTIPLY_BY > 0
x05x05REPORT "CLK5_MULTIPLY_BY(%) must be greater than 0." CLK5_MULTIPLY_BY
x05x05SEVERITY ERROR
x05x05HELP_ID ALTCLKLOCK_STRATIX_PARAMETER_IS_ZERO;为什么会这样?
千休个1年前1
从前以前 共回答了20个问题 | 采纳率85%
不是写的很清楚么?Set the parameter to a value that is greater than 0
what conversion factor will you need to multiply by to conve
what conversion factor will you need to multiply by to convert grams to kilograms
求翻译~急
Levi_Civita1年前1
yumidonna 共回答了17个问题 | 采纳率100%
当你把克换算成千克的时候需要乘以一个什么转换因数
英语翻译请翻译 As shown in the follow diagram,there is a 5 multiply
英语翻译
请翻译 As shown in the follow diagram,there is a 5 multiply 5 checkered table,and the side length of each small check is 1.Now please calculate the total area of the shaded part in the diagram.
meiling1191年前3
xiaoming99999999 共回答了18个问题 | 采纳率100%
如图所示,有一个5乘5的方格表,每小格的边长是1,现在计算图表中阴影部分的面积
请问下 Multiply 的基础用法.
请问下 Multiply 的基础用法.
是不是表示几乘以几的时候不用它?直接by就行了?
就是现在偶有点脑不清楚表示乘积关系时候什么时候用Multiply,什么时候不用.
hz000011年前3
粉红小肚兜 共回答了10个问题 | 采纳率100%
以5*13为例
不可以说 5 multiplies 13 !
只可以说 multiply 5 by 13.
而说"把这两个数字相乘"时,可以说:
multiply the two numbers
这时by就用不上了~
英语翻译total commercial invoice value multiply 10% round off to
英语翻译
total commercial invoice value multiply 10% round off to the nearest thousandth.Then that amount is calculated $4/1000,min $50
kk燕1年前2
雨中布衣 共回答了15个问题 | 采纳率86.7%
商业发票价值总额乘以10%,四舍五入到最近的千位数.然后,用这一数额计算每1000美元收取4美元,最低收取50美元.
为什么在用multiply表示“乘”的的时候要用过去式
为什么在用multiply表示“乘”的的时候要用过去式
我看到例句,比如说5乘4等于20都是用的:
5 multiplied 4 is 20 ,为什么multiply就用过去式,而be不用
猫和它尾巴1年前2
omkt 共回答了16个问题 | 采纳率87.5%
这不是过去式,而是过去分词作定语修饰5 ,5 multiplied 4是主语,意为"被4乘的5".
“5乘4等于20”是一个客观事实,故be要用现在式is .
stm32错误解释o.axf:Error:L60E:Symbol GPIO_InitStructure multiply
stm32错误解释o.axf:Error:L60E:Symbol GPIO_InitStructure multiply defined (by httpd.o and main.o
.o.axf:Error:L6200E:Symbol GPIO_InitStructure multiply defined (by httpd.o and main.o).
小niao1年前1
chuanbei 共回答了21个问题 | 采纳率81%
“GPIO_InitStructure” 这个定义了多次,在httpd.c文件和main.c文件里都定义了.希望对你有用
英语翻译Errors and uncertainties multiply,cascadingupward throug
英语翻译
Errors and uncertainties multiply,cascading
upward through a chain of turbulent features,from dust devils and squalls up to continent-size eddies that only
satellites can see.(其中的cascading upward是什么意思)
清水芙蓉20041年前1
重庆不买的 共回答了23个问题 | 采纳率95.7%
上下文是什么?可能是“向上层叠展开”的意思.
单词第三人称单数形式cross allow begin multiply lock finish daydream
chloe191年前1
落花为冢1 共回答了18个问题 | 采纳率100%
只有动词的一般现在是才有第三人称单数形式,
一般是在词尾加s;
遇s、x、ch、sh、o结尾的词加es;
遇‘辅音+y’结尾的,将y改为ie再加s;
两个不规则的:have---has,be---is
你的几个词的答案是:
crosses allows begins multiplies locks finishes daydreams
英语翻译New this month from Multiply:- Faceboxes:Find friends in
英语翻译
New this month from Multiply:
- Faceboxes:Find friends in photos
- Post via E-mail upgrades
- Easy ID linking
- For the latest news...
New and Awesome:Faceboxes
Did you know that we post almost exactly the same news that
appears in these newsletters,as it happens,throughout the
month on the official Multiply blog?Check it out:
If you would rather not receive e-mail newsletters like
this,we understand.Just log in to Multiply and update your
E-Mail Alerts page:
You can read our privacy policy at:
Multiply Inc,6001 Park of Commerce Blvd
Boca Raton,FL 33487,USA
lzy68751年前1
5hebjke 共回答了12个问题 | 采纳率83.3%
New this month from Multiply:
- Faceboxes:Find friends in photos
- Post via E-mail upgrades
- Easy ID linking
- For the latest news...
New and Awesome:Faceboxes
这一段意思是:-面孔:在照片中找到你的朋友
-通过email得升级版邮过来
-轻松的id链接
-获得最新消息
Who doesn't love seeing photos of the people they know?And
everyone likes to see the photos of *themselves* posted by
people they know,right?
谁不爱看熟人的照片?而且每个人都喜欢看熟人邮给他们的照片,是吗?
Both of these things are now possible--and easy--thanks to
the brand-new Facebox feature!Faceboxes allow you to "tag"
people you know in photos on Multiply,making it easier for
those photos to be found by people interested in them.
这些事情现在都成为了可能而且很容易.多亏了新品牌的软件facebox.facebox可让你通过multiply给你认识的照片中的人“贴上标签”,使这些照片很容易被对它感兴趣的人所找到.
To get started Faceboxing,just find a photo and click
someone's face!Then,use the box that appears to label the
individual.
在开始图像处理之前,先找一张照片然后点击某人的脸部.然后使用工具盒,
给这个人贴标签
We've made a few significant improvements to a favorite
feature of ours:Post via E-mail.For almost a year now,
this has enabled you to post content to Multiply from any
e-mail-enabled device...including the one you likely
already have in your pocket.Our new enhancements take
e-mail posting to the next level.
我们已经对我们产品的最好的特征作了些深刻的改进:经email邮送.可接近有一年的时间能使你发送内容给multiply
抱歉,今天时间有限,先翻译到这
英语翻译1.Can a horse add,subtract,multiply,and divide?Of course
英语翻译
1.Can a horse add,subtract,multiply,and divide?Of course not!However,in 1990 Wilhelm von Osten disagreed with you.Von Osten was a German schoolteacher.He tried to prove that animals are as intelligent as humans.
2.Taking a bear,a cat,and a horse as his students,von Os-ten began to teach them arithmetic or real numbers.Although the bear and cat soon lost interest,the horse didn't.
3.In fact,Clever Hans,as he was called,proved to be an excellent student.Facing his teacher,he would stand quiety during each lesson.To make sure that Hans'eyes.These "blinders "made Hans look directly at his teacher.It seemed impossible for anything to distract him.
欣云9031年前1
紫心兔 共回答了12个问题 | 采纳率91.7%
1.一匹马会做加减乘除吗?当让不会.然而,1990年Wilhelm von Osten却提出了异议.Wilhelm von Osten是一名德国教师.他尝试证明动物和人类一样聪明.
2.Wilhelm von Osten把一只熊,一只猫和一匹马当作自己的学生,开始教他们算术和实数.尽管熊和猫马上对数学失去了兴趣,但是马却坚持了下来.
3.实际上,Clever Hans,正如他的名字一样,是一名优秀的学生.当他总是可以静静地跟随老师,完成每一节课.为了保证不让Hans分心,这些遮帘使他的眼睛只能看着他的老师.
求问reproduce, multiply, breed的区别
求问reproduce, multiply, breed的区别
三者有和区别?
查字典以后,我个人的理解是:
reproduce强调reproduce施受双方的相似性
multiply强调数量上成倍增加
breed强调能力
不知道理解得恰当与否,是否全面,还有没有更好的解释?
再说一下,字典我都查过了,不要把google、金山等上的解释复制给我。。
What I want is the DIFFERENCE between the three words, NOT the explanation of each word!!
为商求信1年前2
jkjgf_001 共回答了23个问题 | 采纳率95.7%
eproduce
[ˌri:prəˈdju:s]
vt.& vi.
复制; 重现; 再版
The picture will reproduce well.
这照片会印得很清楚.
生殖,繁殖
Rabbits reproduce quickly.
兔子繁殖速度很快.
multiply
[ˈmʌltiplai]
vt.& vi.
乘,(使)相乘
His son is learning to multiply and divide.
他儿子正在学习乘法和除法.
(使)增加
Spending on military equipment has multiplied in the last five years.
过去的五年中军事装备的开支大大增加.
(使)繁殖
When animals have more food,they generally multiply faster.
动物在有较多的食物时,一般繁殖得较快.
breed
[bri:d]
n.
种,品种
It makes her furious to see a good breed of sheep being treated cruelly.
看到品种优良的羊受到残忍的对待,她非常气愤.
vt.& vi.
生育; 繁殖
Rabbits breed quickly.
兔子繁殖很快.
vt.
饲养,培养
She bred her daughter to become a statesman.
她把她的女儿培养为一名政治家.
引起,招致
Flies in food shops breed disease.
食品店里的苍蝇能引起疾病.
Debug/AFG.exe :fatal error LNK1169:one or more multiply defi
Debug/AFG.exe :fatal error LNK1169:one or more multiply defined symbols found
#include
void main()
{
int a,b;
int *pointer_1,*pointer_2;
a=100;b=10;
pointer_1=&a;
pointer_2=&b;
printf("%d,%dn",a,b);
printf("%d,%dn",*pointer_1,*pointer_2);
}
c的程序在vc++中就出现这种情况.如何在VC中正确的执行
xurose1年前1
心伤_原野 共回答了21个问题 | 采纳率95.2%
语法没有问题,可能是VC++的原因,你新建一个项目,把代码复制过去试试
add subtract multiply divide用法(固定搭配等0
add subtract multiply divide用法(固定搭配等0
make sth 加形容词还是副词
npf080021年前2
susie_1981 共回答了9个问题 | 采纳率100%
Add one and two and you get three.
Subtract one from two and you get one.
Four multiplied by five is twenty.
Nine divided by two is four and a half.
photoshop混合模式中的Multiply是什么意义?
百合儿qq1年前1
12color 共回答了22个问题 | 采纳率95.5%
正片叠底模式(Multiply模式)——正片叠底模式.考察每个通道里的颜色信息,并对底层颜色进行正片叠加处理.其原理和色彩模式中的“减色原理”是一样的.这样混合产生的颜色总是比原来的要暗.如果和黑色发生正片叠底的话,产生的就只有黑色.而与白色混合就不会对原来的颜色产生任何影响.将上下两层图层像素颜色的灰度级进行乘法计算,获得灰度级更低的颜色而成为合成后的颜色,图层合成后的效果简单地说是低灰阶的像素显现而高灰阶不显现(即深色出现,浅色不出现),产生类似正片叠加的效果.(说明:黑色灰度级为0,白色灰度级为255)
x04 这种模式可用来着色并作为一个图像层的模式.MuItiply模式从背景图像中减去源材 料(不论是在层上着色还是放在层上)的亮度值,得到最终的合成像素颜色.在MuItiply模式中应用较淡的颜色对图像的最终像素颜色没有影响.MuItiply模式模拟阴影是很捧的.现实中的阴影从来也不会描绘出比源材料(阴影)或背景(获得阴影的区域)更淡的颜色或色调的特征.用户将在本章中使用MuItiply模式在恢复的图像中对Lee加入一个下拉阴影.
为什么multiply乘的时候要去Y加ied
为什么multiply乘的时候要去Y加ied
如Four multiplied by five is twenty.
3 multiplied by 2 equals 6.
那如果用TIME 可以说Four timed by five is twenty
还有2 times 3 is 6 这里的time是加S的 如果3 apples time two equals six apples 这里是不是 不用加S了?
超人07051年前2
juxiaohui123 共回答了11个问题 | 采纳率100%
这里的multiplied是过去分词作定语,而 times 是介词,所以 3个苹果乘以2等于6个苹果 用英语说是 3 apples times two equals six apples.依然用times.
希望我的回答能对你有所帮助~
The day way on earth to multiply hoppies is to divid 这句话的汉语意
The day way on earth to multiply hoppies is to divid 这句话的汉语意思是什么?
dengdaizhong11年前1
巴掌宝宝 共回答了18个问题 | 采纳率88.9%
你确定原句没错么?
应该是这样吧:
The only way on earth to multiply happiness is to divide it.
世界上能使幸福成倍地增加的唯一办法就是将其分成几份与人分享.
英语翻译Using the sorted data,multiply the number in cell A18 by
英语翻译
Using the sorted data,multiply the number in cell A18 by 0.001 excel表格的制作的一个要求,这是task2 .task1 让我把200个数排序,全在columnA里,排完序就是这个task2的第一句话,整个task2 是这样的Using the sorted data,multiply the number in cell A18 by 0.001.Input this value in cell B18.Then in cell C18,find the inverse hyperbolic tangent of the number in cell B18.The atanh(x) function calculates the inverse hyperbolic tangent of x,which you can type directly into the cell or access via the formulas tab.(Use the help menu in Excel for more guidance.)
xiao991114pe1年前4
szhtzzy2323 共回答了17个问题 | 采纳率82.4%
任务一中,已经将A列的数据排列好了;任务二,就是在B18中输入A18*0.001的值,即“=A18*0.001”;C18中输入“ B18的双曲正切(函数)”,这里可以直接在C18中输入 B18的双曲正切(函数)值,也可以采用函数“= atanh(B18)”得出.
很简单!