I made a program in C ++ that reads a number and prints it in hexadecimal, follow the code below.
#include <iostream>
using namespace std;
int main(void) {
int n;
cin>>n;
cout<<hex<<n<<endl;
return 0;
}
But it prints everything in tiny and I would like it printed in buttercup, how can I do that?