作业帮 > 综合 > 作业

计算机科学与概论上的c语言题目!

来源:学生作业帮 编辑:作业帮 分类:综合作业 时间:2024/07/18 00:33:12
计算机科学与概论上的c语言题目!
1.
Whatsequence of values would be printed if the procedure xxx described below wereexecuted with N =
procedure xxx (N)
if (N < 4) then (print the value of N;
apply the procedure yyyto the value 7)
else (apply the procedure yyy to the value 2;
print the value of N)
procedure yyy (N)
if (N < 5) then (print the value of N;
apply the procedure zzzto the value 6)
else (apply the procedure zzz to the value 5)
procedure zzz (N)
if(N = 5) then (print the value 7)
else (print the value 8)
________________________
2.
Whatsequence of numbers would be printed if the following procedure were executedwith N =
procedure xxx (N)
print the value of N;
if (N < 5) then (apply the procedurexxx to the value N + 2);
print the value of N
__________________
3.
Whatsequence of numbers would be printed if the procedure xxx were executed with N =2?
procedure xxx (N) procedureyyy (N)
print the value of N; printthe value of N;
if (N < 3) applythe procedure xxx to the value 5;
then (apply procedureyyy printthe value of N
to the value 4);
print the value of N
_____________________
我已经搞不清楚层层叠叠的输出是怎么回事了.有些好像还要执行完下一个函数后才能返回一个值输出n,我都糊涂了
这个跟c很明显没有任何关系,这个是存储过程,PL/SQL, 非广告地说,我建议你下载:
http://pan.baidu.com/s/1qWtuz0o

单纯看里面的"尚硅谷_plsql.pdf"课件.

只要你肯花2个小时,保证你能解答(大家同行,时间就是掐这个数的了)