Search found 2 matches

by zaghaghi
Tue Nov 18, 2003 5:02 am
Forum: Other words
Topic: Judge not responding
Replies: 2
Views: 1443

Judge not responding

Why the judge doesn't respond?we are trying to connect to the system
for 2 days but we got "The page can not be displayed" message.
:cry: :-?
by zaghaghi
Thu Oct 30, 2003 4:55 am
Forum: Volume 1 (100-199)
Topic: 128 - Software CRC
Replies: 62
Views: 14570

you can set the ios::uppercase flag for cout.
you can use setf member function of cout to set this flag :

[cpp]
cout.fill('0');
cout.setf(ios::uppercase);
cout<<hex<<setw(2)<<nHigherByteCRC<<" ";
cout<<hex<<setw(2)<<nLowerByteCRC <<" "<<endl;
[/cpp]

and for unsetting this flag use unsetf ...

Go to advanced search