我国首次引进DRB的是( )项目。
A.二滩水电站 B.黄河小浪底水电站C.长江三峡水电站 D.青藏铁路
参考答案:A
某企业拟投资9000元,经预计,该项投资有效期为4年,每年现金净流入额依次为240元、3000元、4000元、3600元,若贴现率为10%,则其现值指数为( )。
A.1.125
B.1.12
C.1.127
D.1.128
以下程序中函数 fun 的功能是:构成一个如图所示的带头结点的单向链表,在结点 的数据域中放入了具有两个字符的字符串。函数 disp 的功能是显示输出该单向链表 中所有结点中的字符串。请填空完成函数 disp。headab cd ef \0 #include typedef struct node /*链表结点结构*/{ char sub[3];struct node *next; }Node;Node fun(char s) /* 建立链表*/{ …… }void disp(Node *h){ Node *p;p=h->next;while(= _______ ){ printf("%s\n",p->sub);p= _______ ; }}main(){ Node *hd;hd=fun(); disp(hd);printf("\n");}