C/C++
文章平均质量分 81
居诚仕
这个作者很懒,什么都没留下…
展开
-
C++ Primer, 5th Edition Exercise CH1
Exercise 1.3: Write a program to print Hello, World on the standard output. #include int main() { std::cout << "Hello, World!" << std::endl; system("pause"); return 0; }原创 2014-02-27 00:11:27 · 3418 阅读 · 0 评论 -
C++ Primer, 5th Edition Exercise CH2
Exercise 2.1: What are the differences between int, long, long long,and short? Between an unsigned and a signed type? Between a float and a double? The difference is the size.But,the number of bits i原创 2014-03-01 01:04:53 · 4914 阅读 · 1 评论