http://great-mahatma.livejournal.com/ ([identity profile] great-mahatma.livejournal.com) wrote in [personal profile] dememax 2016-04-30 08:30 am (UTC)

А ну-ка проверю работает или нет...

#include 
#include 
#include 

using namespace std;

int main()
{
    int i = 0x1234abcd;
    printf("0x%016X (%d)\n", i, i);

    cout << "0x"
         << setfill('0')
         << setw(16)
         << hex
         << uppercase
         << i
         << " ("
         << dec
         << i
         << ")"
         << endl;
    return 0;
}


В режиме "ПРОСМОТР" сработало. Как запостится уж не знаю.

Post a comment in response:

If you don't have an account you can create one now.
HTML doesn't work in the subject.
More info about formatting