title: C语言-翁恺-PTA-121-160课后练习题-04 tags: CPTA description: ’ ’ mathjax: true date: 2024-04-09 23:16:22 categories:CPTA 7-137 Average You are going to read a serial of none-negative integers, whi
整数的输入输出1 数据类型有很多:char、int、long、long long… 但在输入输出格式化时,只有两种: %d :int %ld : long long 变换看待方式,还有unsigned: %u : unsigned %lu : unsigned long long 在计算机内部,一串字符在现实中表示什么取决于用什么样的方式去看待它,比如%d与%u同样输出同一个位串,会
《课时11 new&delete》 本地变量 malloc动态地得到一块内存 C++用新了两个新的运算符来动态分配内存 new Stash new 类的时候,会分配空间并且调用构造函数 new int; new Stash; new int[10]; 运算符必然有返回值。 delete delete p; delete[] p; 先调用析构函数,再释放空间。 int* psome = new