I dont see why it would be nice to have them be pointers. But either way, since you mentioned you wanted to delete them, I assume you want to allocate memory. Here -
1 2 3 4 5 6 7
double* tip = newdouble;
tip = bill*0.15;
double* n = newdouble;
n = find_first_digit(tip);
delete tip;
delete n;