在我的编程课上,我们有基于代码示例的测试和测验,我们必须通过这些示例并确定最终输出。通常它们是一些棘手的代码,当我意识到时,我被困在一些随机函数中,不知道我在做什么。
你如何正确地运行纸上的代码?跟踪循环、变量、函数,一切都让我感到困惑。
例如,这是我们过去的一个测验,我得到了 100%,但它花了我很长时间,而且非常混乱:
#include <iostream>
#include <cstring>
using namespace std;
class foo {
char word[20];
int qty;
public:
foo( ) { set(3, 5); }
foo( int m, const char * s) { set(m, m+1);
strcpy(word, s); }
foo( const foo& a ) { cout << "... hahaha.1" << endl;
qty = 3 + a.qty;
strcpy( word, a.word );
strcat( word, ".5.6.7" );
cout << "... hahah.2" << endl; }
~foo( ) { cout << qty << "," << word << "!!!" << endl; }
void set(int a, int b){ qty = a + b;
strcpy( word, "summer" ); }
void wow();
void output(){ cout << word << "," << qty << endl; }
};
void hello( foo& );
void greet( foo );
int main() {
foo x, y(100, "QUIZ");
greet( y );
cout << "a.b.c.d.e." << endl;
hello( x );
x.output();
y.output();
cout << "...the end" << endl;
return 0;
}
void foo::wow() { strcat(word,".1.2.3");
qty += 4; }
void greet( foo g ) { cout << "...HI.1\n";
g.wow();
g.output();
cout << "...HI.2\n"; }
void hello(foo & h) { cout << "...hello.1" << endl;
foo e;
e = h;
h.wow();
h.output();
e.output();
cout << "...hello.2\n"; }