-4
Warum diese Funktion:C++ falscher Wert Druck cout Funktion
uint64_t rot_xor(uint64_t a1, uint64_t a2) {
int size = sizeof(a1)*4;
cout<<" "<<"size:"<<bitset<8>(size).to_string()<<" "<<size;
int shift;
uint64_t output = 0;
cout<<endl;
for (shift = 0; shift < size; shift++)
if(a1&(1<<shift)) {
output ^= (a2 << shift) | (a2 >> (size - shift));
cout << bitset<64>(output).to_string()<<endl;
}
return output;
}
Druckausgabe:
- : size: 00010000 20
- : 0000000000000000000000000000000010110000110000011111001011111001
Warum sollte es nicht? Was haben Sie erwartet, dass es gedruckt wird und was führen Sie dazu? –
können Sie dort sehen http://ideone.com/zkqMPO – AgentIvan
int size = sizeof (a1); cout << endl << "size:" < (Größe) .to_string() << "" << size; Größe = Größe * 4; cout << "" << "size:" < (Größe) .to_string() << "" << Größe; Drucken: Größe: 00001000 8 Größe: 00100000 20 –
AgentIvan