P12 练习题1.21. (10) $\begin{align*}\lim\limits_{n\rightarrow \infty} \frac{n^2 \arctan n}{1+n^2} = \frac{\pi}{2}\end{align*}$证:因为 $\begin{align*}\frac{n...
分类:
其他好文 时间:
2015-09-28 16:20:57
阅读次数:
208
C - 薛定谔的猫
Time Limit:2000MS Memory Limit:65536KB 64bit IO Format:%lld
& %llu
Submit Status
Description
Edward, a poor copy typist, is a user of the Dvorak Layout. But now he ha...
分类:
其他好文 时间:
2015-08-21 21:36:43
阅读次数:
355
H - 玻色-爱因斯坦凝聚态
Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d
& %I64u
Submit Status
Description
Now, here is a fuction:
F(x) = 6 * x^7+8*x^6+7*x^3+5*x^2-y*x (...
分类:
其他好文 时间:
2015-08-21 21:36:13
阅读次数:
200
A - 海森堡不确定原理
Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d
& %I64u
Submit Status
Description
给一个N位的正整数,该数不包含前导0,先让你调整其中每个数字的位置,得到另一个n位的数,并且使得这个数越小越好,而且这个数不能包含前导0...
分类:
其他好文 时间:
2015-08-21 21:36:03
阅读次数:
208
分析下面程序出现的编译错误,给出解决的方案。
#include
using namespace std;
//定义函数模板
template
T max(T a, T b)
{
return (a>b)?a:b;
}
int main()
{
int x=2,y=6;
double x1=9.123,y1=12.6543;
cout<<"把T实例化为int:"<...
分类:
其他好文 时间:
2015-06-27 18:31:55
阅读次数:
287
#include
using namespace std;
int a[10]= {1,2, 3, 4, 5, 6, 7, 8, 9, 10};
int fun( int i);
int main()
{
int i ,s=0;
for( i=0; i<=10; i++)
{
try
{
s=s+fun(i);
...
分类:
其他好文 时间:
2015-06-27 16:28:28
阅读次数:
118
#include
using namespace std;
namespace CounterNameSpace
{
int upperbound;
int lowerbound;
class counter
{
int count;
public:
counter(int n)
{
if (n <= upperbound )
{
...
分类:
其他好文 时间:
2015-06-27 16:28:02
阅读次数:
117
1、阅读并运行下面的两个程序,分别用记事本和二进制文件阅读器(请自行下载Binary Viewer等程序,或者用DOS中的Debug程序,并百度其用法)。查看其内容,并理解文件存储的原理。
(1)
#include
#include
#include
using namespace std;
int main( )
{
int a;
ofstream outfile("f...
分类:
其他好文 时间:
2015-06-17 09:33:57
阅读次数:
150
3、阅读下面的程序,指出其功能,体会seekg()、tellg()等函数的功能及其用法
(1)
#include
#include
using namespace std;
const char * filename = "a.txt";
int main ()
{
long l,m;
ifstream file (filename, ios::in|ios::binary)...
分类:
其他好文 时间:
2015-06-17 09:31:41
阅读次数:
123
2、查看下面程序的输出,解释为什么会有这样的输出。
#include
#include
using namespace std;
int main( )
{
unsigned char a[] = {0x32,0x30,0x31,0x35,0xA3,0xAC,0xCE,0xD2,0xC3,0xC7,0xB3,0xD4,
0xC1,...
分类:
其他好文 时间:
2015-06-17 09:31:19
阅读次数:
107