5 lines
120 B
C++
5 lines
120 B
C++
|
|
int main(){
|
||
|
|
N n(4);
|
||
|
|
while (n.hasNext()) std::cout << n.next() << "\t* " << std::bitset<4>(n.next()) << std::endl;
|
||
|
|
}
|