namespace myNum
{
int x = 105;
}
int main()
{
bool isFlag = false;
if(myNum::x % 2 == 0)
{
//改变状态位的值,使其为false
isFlag = false;
}
else
{
isFlag = true;
}
if(isFlag=true)
{
cout<<"变量是奇数"<<endl;
}
else
{
cout<<"变量是偶数"<<endl;
}
return 0;
}
{
int x = 105;
}
int main()
{
bool isFlag = false;
if(myNum::x % 2 == 0)
{
//改变状态位的值,使其为false
isFlag = false;
}
else
{
isFlag = true;
}
if(isFlag=true)
{
cout<<"变量是奇数"<<endl;
}
else
{
cout<<"变量是偶数"<<endl;
}
return 0;
}
using namespace std; //后面的函数就可以直接调用std
优点:避免了重复使用std::cout 等这样的函数前面加上使用函数相应的域名
优点:避免了重复使用std::cout 等这样的函数前面加上使用函数相应的域名
2017-09-15
#include<iostream>
#include<stdlib.h>
using namespace std; //关于这里,且听下回分解
int main()
{
printf("Hello imooc"); //在此填写我们的开篇Hello imooc
return 0;
}
#include<stdlib.h>
using namespace std; //关于这里,且听下回分解
int main()
{
printf("Hello imooc"); //在此填写我们的开篇Hello imooc
return 0;
}
2017-09-15
#include<iostream>
#include<stdlib.h>
using namespace std; //关于这里,且听下回分解
int main()
{
printf("Hello imooc"); //在此填写我们的开篇Hello imooc
return 0;
}
#include<stdlib.h>
using namespace std; //关于这里,且听下回分解
int main()
{
printf("Hello imooc"); //在此填写我们的开篇Hello imooc
return 0;
}
2017-09-15
一直说我cin和cout,还有system没有声明标识符
#include<iostream>
#include <stdlib.h>
#include"stdafx.h"
int main(void)
{
int arr1[4] = { 3,5,1,7 };
bool isMax = false;
cin >> isMax;
cout << getMaxOrMin(arr1, 4, isMax) << endl;
system("pause");
return 0;
}
#include<iostream>
#include <stdlib.h>
#include"stdafx.h"
int main(void)
{
int arr1[4] = { 3,5,1,7 };
bool isMax = false;
cin >> isMax;
cout << getMaxOrMin(arr1, 4, isMax) << endl;
system("pause");
return 0;
}
#include <iostream>
#include <stdlib.h>
using namespace std;
namespace myNum //填写命名空间的关键字
{
int x = 105;
}
if(isFlag)
{
// 如果状态位的值为true,则打印变量x是奇数
cout<<myNum::x<<"是奇数"<<endl;
}
else
{
// 如果状态位的值为false,则打印变量x是偶数
cout<<myNum::x<<"是偶数"<<endl;
}
#include <stdlib.h>
using namespace std;
namespace myNum //填写命名空间的关键字
{
int x = 105;
}
if(isFlag)
{
// 如果状态位的值为true,则打印变量x是奇数
cout<<myNum::x<<"是奇数"<<endl;
}
else
{
// 如果状态位的值为false,则打印变量x是偶数
cout<<myNum::x<<"是偶数"<<endl;
}
简洁版
#include <iostream>
#include <stdlib.h>
using namespace std;
int main(void)
{
cout << "请输入一个整数以及一个布尔值(0、1)" << endl;
int x = 0;
bool y = false;
cin >> x >> y;
cout << oct << x << endl << dec << x << endl << hex << x << endl;
cout << boolalpha << y << endl;
system("pause");
return 0;
}
#include <iostream>
#include <stdlib.h>
using namespace std;
int main(void)
{
cout << "请输入一个整数以及一个布尔值(0、1)" << endl;
int x = 0;
bool y = false;
cin >> x >> y;
cout << oct << x << endl << dec << x << endl << hex << x << endl;
cout << boolalpha << y << endl;
system("pause");
return 0;
}
2017-09-02