초등학교 때 배우는 두 정수의 곱셈표를 만들어 주는 C++ 소스이다. /* * Filename: makeMultTableCPP.cpp * * Print a multiplication table. * * Compile: cl /EHsc makeMultTableCPP.cpp * Execute: makeMultTableCPP 230 5100 * * Date: 2009/03/07 * Author: pkim (AT) scripts.pe.kr */ #include #include #include using namespace std; void printUsing(); void printMultTable(int x, int y); int main(int argc, char *argv[]) { long x, y; if ..