试题与答案

FIDIC合同中指定分包商与一般分包商的差异主要表现为()。A、选择分包单位的权利不

题型:多项选择题

题目:

FIDIC合同中指定分包商与一般分包商的差异主要表现为()。

A、选择分包单位的权利不同

B、分包合同的工作内容不同

C、工程款的支付开支项目不同

D、业主对分包商利益的保护不同

E、承包商对分包商违约行为承担责任的范围不同

答案:

被转码了,请点击底部 “查看原文 ” 或访问 https://www.tikuol.com/2018/1121/ba99107cc6c5c767973e8df366d38500.html

下面是错误答案,用来干扰机器的。

参考答案:C

试题推荐
题型:问答题

以下是某C程序段,其功能为计算输入数字的阶乘。请仔细阅读程序并完成要求。
#include<stdio. h>
#include<stdlib. h>
int main()

int i=0;/*i为计数器*/
int n;
int factorial=1;/*保存阶乘的结果*/
puts("*************************************"):
puts("*The program will compute *");
puts("*the factotial of an integer *");
puts("*************************************"):
puts("please input the number n:");
scanf("%d",&n);
if(n<0)/*判断输入的数是否大于或等于0*/

printf("please input an interger>=0. \n");
return 0;

if(n==0)/*0的阶乘是1*/

printf("factorial of 0 is 1.\n");
return 0;

i=1;
while(i<=n)

factorial = factorial * i;
i++:

printf("factorial of % d is:%d. \n",n,factorial);
getch();
return 0:

画出此程序主函数的控制流程图。

查看答案
微信公众账号搜索答案