我国建设项目规划阶段的投资估算精度的要求为允许误差大于±30%。( )
参考答案:对
甲通过计算机网络给乙发消息,说其同意签定合同。随后甲反悔,不承认发过该条消息。为了防止这种情况发生,应在计算机网络中采用( )。
A.消息认证技术
B.数据加密技术
C.防火墙技术
D.数字签名技术
有以下程序: #include <iostream> using namespace std; long fib( int n ) { if(n>2)return ( fib( n-1 )+fib( n-2 ) ); elsereturn 2; } int main() cout<<fib(3)<<end1; return 0; } 则该程序的输出结果应该是 【12】 。