Fill in the blanks by smkt

#include <iostream>
using namespace std;main(){char J[99],w,t=0;cin>>J;cin.get();while(1){w=cin.get();if(cin.eof())break;w=='_'?w=J[t++]:0;cout<<w;}}

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page