题目内容 (请给出正确答案)
[主观题]

"What does the middleman do but add to the price of goods in the shops?" Such remarks are

aimed at the intermediate operations between manufacturers and final customers. This practice usually attracts a lot of attention from the public and the press and the operation most talked about is what is often called wholesaling.

The wholesaler buys goods in large quantities from the manufacturers and sells them in smaller parcels to retailers, and for this service his selling price to the retailer is raised several percent higher. But his job is made more difficult by retail demand not necessarily running level with manufacturers' production. Because he adjusts or regulates the flow of goods by holding stock until required, he frees the manufacturer, to some extent, from the effect on production of changing demand and having to bear the whole risk.

The manufacturer can then keep up a steady production flow, and the retailer has no need to hold heavy stocks, who can call on the wholesaler for supplies any time. This wholesale function is like that of a valve in a water pipe. The middleman also bears part of the risk that would otherwise fall on the manufacturer and also the retailer.

The wholesaler provides a purely commercial service, for which he is too well rewarded. But the point that is missed by many people is that the wholesaler is not just someone adding to the cost of goods. It is true one could eliminate the wholesaler but one would still be left with his function: that of making sure that goods find their way to the people who want them.

"Middleman" in the passage almost equals to all the following in meaning EXCEPT______.

A.go-between

B.intermediary

C.manufacturer

D.wholesaler

查看答案
如搜索结果不匹配,请 联系老师 获取答案
您可能会需要:
您的账号:,可能会需要:
您的账号:
发送账号密码至手机
发送
更多“"What does the middleman do bu…”相关的问题

第1题

下列程序是用来判断数组中特定元素的位置所在的。

#include

#include

int fun(int *s, int t, int *k)

{ int i;

*k=0;

for(i=0;i

if(s[*k]

return s[*k]; }

main()

{ int a[10]={ 876,675,896,101,301,401,980,431,451,777},k;

fun(a, 10, &k);

printf("%d, %d\n",k,a[k]);}

如果输入如下整数:876 675 896 101 301 401 980 431 451 777

则输出结果为

A.7,431

B.6

C.980

D.6,980

点击查看答案

第2题

下列程序是用来判断数组中特定元素的位置所在的。#include <conio.h>#include <stdio.h>int fun(int *s, int t, int *k){ int i;*k=0;for(i=0;i<t;i++)if(s[*k]<s[i])*k=i;return s[*k]; }main(){ int a[10]={ 876,675,896,101,301,401,980,431,451,777},k;fun(a, 10, &k);printf("%d, %d\n",k,a[k]);}如果输入如下整数:876 675 896 101 301 401 980 431 451 777则输出结果为

A.7,431

B.6

C.980

D.6,980

点击查看答案

第3题

下列程序是用来判断数组中特定元素的位置所在的。#include <conio.h>#include <stdio.h>int fun(int *s, int t, int *k){ int i;*k=0;for(i=0;i<t;i++)if(s[*k]<s[i])*k=i;return s[*k]; }main(){ int a[10]={ 876,675,896,101,301,401,980,431,451,777},k;fun(a, 10, &k);printf("%d, %d\n",k,a[k]);}如果输入如下整数:876 675 896 101 301 401 980 431 451 777则输出结果为

A.7,431

B.6

C.980

D.6,980

点击查看答案

第4题

请编写一个函数int fun(int *s,int t,int *k),用来求出数组的最大元素在数组中的下标并存放在k所

请编写一个函数int fun(int *s,int t,int *k),用来求出数组的最大元素在数组中的下标并存放在k所指的存储单元中。

例如,输入如下整数:

876 675 896 101 301 401 980 431 451 777

则输出结果为6,980。

注意:部分源程序给出如下。

请勿改动主函数main和其他函数中的任何内容,仅在函数fun的花括号中填入所编写的若干语句。

试题程序:

include <conio.h>

include <stdio.h>

int fun(int *s,int t,int *k)

{

}

main()

{

int a[10]={ 876,675,896,101,301,401,

980,431,451,777},k;

clrscr();

fun(a, 10, &k);

printf("%d, %d\n ", k, a[k]);

}

点击查看答案

第5题

下列程序是用来判断数组中特定元素的位置所在,则输出结果为#include<conio.h>#include<iostream.

下列程序是用来判断数组中特定元素的位置所在,则输出结果为 #include<conio.h> #include<iostream.h> int fun(int *s,int t,int*k) { int i; *k=0; for(i=0;i

A.7,431

B.6

C.980

D.6,980

点击查看答案

第6题

请编写函数fun,其功能是求出数组的最大元素在数组中的下标并存放在k所指的存储单元中。例如,输入

请编写函数fun,其功能是求出数组的最大元素在数组中的下标并存放在k所指的存储单元中。

例如,输入如下整数:876 675 896 10l 30l 401 980 431451 777则输出结果为:6,980

注意:部分源程序在文件PROGl.C文件中。

请勿改动主函数main和其他函数中的任何内容,仅在函数fun的花括号中填入你编写的若干语句。

点击查看答案

第7题

下列程序是用来判断数组中特定元素的位置所在,则输出结果为#include<conio.h>#include<iostream.

下列程序是用来判断数组中特定元素的位置所在,则输出结果为 #include<conio.h> #include<iostream.h> in[fun(int * s,int t,int * k) { int i; *k=0; for(i=0;<t;i++) if(s[*k]<s[i]) *k=i; return s[*k];} void main() { int a[10]={876,675,896,101,301,401,980,431,451,777},k; fun(a,10,&k); cout < < k < <‘,’ < < a[k];}

A.7,431

B.6

C.980

D.6,980

点击查看答案

第8题

下列程序用来判断数组中特定元素的位置所在,则输出结果为()。#include<conio.h>#include<iostream

下列程序用来判断数组中特定元素的位置所在,则输出结果为()。 #include<conio.h> #include<iostream.h> int fun(int*s,int t,int*k) {int i; *k=0; for(i=0;i<t;i++) if (s[*k]<s[i])*k=i; return s[*k];} void main() {int a[10]=(876,675,896,101,301,401,980,431,451,777);int k; fun(a,10,&k); cout<<k<<','<<a[k];}

A.7,431

B.6

C.980

D.6,980

点击查看答案

第9题

下列程序用来判断数组中特定元素的位置所在,则输出结果为()。#include<conio.h>#include<iostream

下列程序用来判断数组中特定元素的位置所在,则输出结果为()。 #include<conio.h> #include<iostream.h> int fun(int*p,int n,int*j) {int i; *j=0; for(i=0;i<n;i++) if(p[*j]<p[i])*j=i; return p[*j];} void main() {int a[10]={1,3,9,0,8,7,6,5,4,2)j;int j; fun(a,10,&j); cout<<j<<','<<a[j];}

A.2,9

B.3

C.9

D.3,9

点击查看答案
热门考试 全部 >
相关试卷 全部 >
账号:
你好,尊敬的上学吧用户
发送账号至手机
密码将被重置
获取验证码
发送
温馨提示
该问题答案仅针对搜题卡用户开放,请点击购买搜题卡。
马上购买搜题卡
我已购买搜题卡, 登录账号 继续查看答案
重置密码
确认修改
谢谢您的反馈

您认为本题答案有误,我们将认真、仔细核查,
如果您知道正确答案,欢迎您来纠错

警告:系统检测到您的账号存在安全风险

为了保护您的账号安全,请在“上学吧”公众号进行验证,点击“官网服务”-“账号验证”后输入验证码“”完成验证,验证成功后方可继续查看答案!

微信搜一搜
上学吧
点击打开微信
警告:系统检测到您的账号存在安全风险
抱歉,您的账号因涉嫌违反上学吧购买须知被冻结。您可在“上学吧”微信公众号中的“官网服务”-“账号解封申请”申请解封,或联系客服
微信搜一搜
上学吧
点击打开微信