Can anyone describe me the difference between window extents and viewport extents, how I can distinct them?
And why should I put a SetWindowExt first while working under an isotropic mapping mode?
I'm kinda confused in this matter..
Thank you a lot!
Table t[1...n]
int s, i;
i=1;
s=0;
while(i<=n){
s = s + t[i];
i++;
};
Complexity : is it n+2 or 2n+2 ?
At the
the line s = s + t[i];
isn't the adding of t[i] a simple constant assignment?
Or am I traversing the whole table still making it an extra "n"-factor?
Please help us out...
Table t[1...n]
int s, i;
i=1;
s=0;
while(i<=n){
s = s + t[i];
i++;
};
Complexity : is it n+2 or 2n+2 ?
At the
the line s = s + t[i];
isn't the adding of t[i] a simple constant assignment?
Or am I traversing the whole table still making it an extra "n"-factor?
Please help us out...
Hello all,
I'm a starter in cobol-programming but I do feel something is weird about this problem.
Please forgive me for the lenghty program as I don't know how to show you otherwise my problem with it...
I'm working on an Athlon with XP as OS and I'm using the Microfocus compiler with that...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.