#include void f(const int a, const double b) { if (a == 320) return; cout << "Ten to the power of " << a << " is " << b << endl; f(a+1, b*10.0); } int main() { f(0, 1.0); }