initial check in

This commit is contained in:
2012-12-06 21:43:03 +04:00
commit 4bc273824d
179 changed files with 29415 additions and 0 deletions

17
shift_size.cpp Normal file
View File

@@ -0,0 +1,17 @@
#include <iostream>
#include <iomanip>
int main ( )
{
std::cout << "shift amount: ";
int a;
std::cin >> a;
int b = 1;
int c = b << a;
std::cout << " 1 << " << a << " = " << std::hex << c << std::endl;
return 0;
}