题目内容

诱发财务危机的直接原因主要包括( )。

A. 资源配置缺乏效率
B. 财务风险的客观存在
C. 投资规模不断扩大
D. 因过度经营而导致现金流入能力低下

查看答案
更多问题

财务预警功能主要是监测功能、预测功能、计划功能、控制功能和对策功能。

工程财务预警不仅可以告诉管理者是否存在风险、风险在哪里,还可以告诉管理层应该如何与方法和控制风险。

读下面的程序,选出正确的函数#include /******函数写在此处******/int main(){ int a,b; scanf("%d %d",&a,&b); fun(&a,&b); printf("%d %d\n",a,b); return 0;}【输入】 两个整数【输出】交换后的两个整数【样例输入】3 5【样例输出】5 3

A. void fun(int a,int b){ int t; t=a; a=b; b=t;}
B. void fun(int *x,int *y){ int t; t=*x; *x=*y; *y=t; }
C. void fun(int *x,int *y){ int t; t=x; x=y; y=t;}
D. int fun(int a,int b){ int t; t=a; a=b; b=t; return t;}

#includeint main(){ int s=6; switch(++s) { case 6: case 7: s+=2; case 8: case 9: s+=2; } printf("%d",s); return 0;}程序的输出为:

A. 11
B. 10
C. 8
D. 9

答案查题题库