//const
#include <iostream>
using namespace std;
int main(void)
{
const int count = 3;
const int *p = &count; /////指针前面要加const
//打印count次字符串Hello C++
for(int i = 0; i < count; i++)
{
cout << "Hello imooc" << endl;
}
return 0;
}
#include <iostream>
using namespace std;
int main(void)
{
const int count = 3;
const int *p = &count; /////指针前面要加const
//打印count次字符串Hello C++
for(int i = 0; i < count; i++)
{
cout << "Hello imooc" << endl;
}
return 0;
}
已采纳回答 / 慕工程6948927
stdlib 头文件即standard library标准库头文件 。stdlib 头文件里包含了C、C++语言的最常用的系统函数。是引用stdlib.h头文件,即#include <stdlib.h>。这里的.h是不可缺少的。stdlib.h中,包含了C语言的一些常用库函数。如动态内存相关的malloc, realloc,zalloc,calloc,free等。随机数相关的rand,srand等。系统相关的system, getenv,setenv等。字符串转数值函数,atoi, atof,...
2016-03-02
#include<iostream>
using namespace std;
void fun(int&a, int&b)
{
int c = 0;
c = a;
a = b;
b = c;
}
int main()
{
int x = 10;
int y = 20;
cout << x << "," << y << endl;
fun(x, y);
cout << x << "," << y << endl;
system("pause");
return 0;
}
这样不是更简单了
using namespace std;
void fun(int&a, int&b)
{
int c = 0;
c = a;
a = b;
b = c;
}
int main()
{
int x = 10;
int y = 20;
cout << x << "," << y << endl;
fun(x, y);
cout << x << "," << y << endl;
system("pause");
return 0;
}
这样不是更简单了
2016-03-02
已采纳回答 / 美男就是良药还不苦口
inline是用于实现的关键字,而不是用于声明的关键字,所以在声明时只需要声明函数即可:int max(int i, int j, int k);inline int max(int i, int j, int k){//函数内容。。。。}
2016-02-26