1、有哪些数据类型?2、数据类型在不同的编译器会有不同的位宽,如何得知?使用如下命令:cout
//该头文件必须加上。。。 cout::max()::min()::max()::max()::max()::min()<<endl;
分类:
编程语言 时间:
2014-05-10 01:39:39
阅读次数:
419
先看下以下代码#includeusing namespace std;int x = 1;int
f1(){ x = 2; return x;}int f2(){ x = 3; return x;}int main(){ //Test1 cout
<< x << ...
分类:
其他好文 时间:
2014-05-10 01:07:57
阅读次数:
375
#include using namespace std;class A{public:
int a;public: A& operator++(){ cout<<"A&
operator++()"<<endl; a=a+1; return *this; } A operator++(int){ c...
分类:
其他好文 时间:
2014-05-07 18:37:55
阅读次数:
208
#include
using namespace std;
class Base
{
public:
Base(){base = 1; cout
virtual ~Base(){cout
virtual void say(){cout
private:
int base;
static int count;
};...
分类:
编程语言 时间:
2014-05-07 06:59:24
阅读次数:
302
题目输入正好是long long的最大, 但是答案超long long所以用unsigned,
不能用cin cout否则一定超时;不能用abs(), abs 只用于整数。unsigned int 0~4294967295int
2147483648~2147483647unsigned long ...
分类:
其他好文 时间:
2014-05-06 00:02:34
阅读次数:
391
// Test.cpp : 定义控制台应用程序的入口点。//#include
"../I_Timer.H"#include void onTimer1(){ std::cout createTimer();#if 1 auto
myTimer1 = /*Timer::createTime...
分类:
其他好文 时间:
2014-05-05 23:28:48
阅读次数:
341
1,C++中操作数组
#include
using namespace std;
int length(char []);
void output_frequency(char []);
int main()
{
char str[]="yan cong min";
cout<<"要处理的字符串为:"<<str<<endl;
cout<<"字符串长度为:"<<lengt...
分类:
编程语言 时间:
2014-05-05 13:29:30
阅读次数:
432
第一个程序 按照下面的方式创建第一个程序,并将引用文件放到指定目录下。
上面的程序将在屏幕上输出“Hello,World”,下面讨论这个程序是如何工作的。1.名称cout是一个标准的输出流。使用输出操作符"<<",放入cout的字符将显示在屏幕上。名称cout的发音是“see-out”,它是“c.....
分类:
其他好文 时间:
2014-05-04 20:14:51
阅读次数:
369
在输入密码时,实现有限次密码输入的限制,如果三次都没有输入正确,程序将直接退出,不允许用户继续操作。
#include
#include
using namespace std;
int main()
{
string pwd;
int cLogin=0;
do
{
cout<>pwd;
if (pwd!="123")
{
...
分类:
编程语言 时间:
2014-05-03 17:45:26
阅读次数:
354
#include
using namespace std;
void f(int(&p)[3]){
cout
cout
}
int main(){
int a1[3]={1,2,3};
cout
cout
f(a1);
}
编译后输出:...
分类:
其他好文 时间:
2014-05-02 05:32:02
阅读次数:
265