这一篇的课好多都好长,,,长过5分钟我就会想“会不会看到一半又突然断了”,这种情况也不是一次两次了,情愿看2个4分钟的都不愿看1个8分钟的
引用我的理解是,花和尚是鲁智深的变量,鲁智深拳打镇关西就相当于花和尚拳打镇关西
引用我的理解是,花和尚是鲁智深的变量,鲁智深拳打镇关西就相当于花和尚拳打镇关西
2016-04-19
#include <iostream>
using namespace std;
int main(void)
{
int x = 3;
//定义引用,y是x的引用
int &y = x ;
//打印x和y的值
cout << x << endl ;
cout << y << endl ;
//修改y的值
y = 10;
//再次打印x和y的值
cout << x << endl ;
cout << y << endl ;
return 0;
}
using namespace std;
int main(void)
{
int x = 3;
//定义引用,y是x的引用
int &y = x ;
//打印x和y的值
cout << x << endl ;
cout << y << endl ;
//修改y的值
y = 10;
//再次打印x和y的值
cout << x << endl ;
cout << y << endl ;
return 0;
}
#include <string.h>
#include <iostream>
using namespace std;
int main(void)
{
//在堆中申请100个char类型的内存
char *str = new char[100];
//拷贝Hello C++字符串到分配的堆中的内存中
strcpy(str, "Hello C++");
//打印字符串
cout<<str<<endl;
//释放内存
delete []str;
str=NULL;
return 0;
}
#include <iostream>
using namespace std;
int main(void)
{
//在堆中申请100个char类型的内存
char *str = new char[100];
//拷贝Hello C++字符串到分配的堆中的内存中
strcpy(str, "Hello C++");
//打印字符串
cout<<str<<endl;
//释放内存
delete []str;
str=NULL;
return 0;
}
#include <iostream>
using namespace std;
int main(void)
{
//定义常量count
const int count = 3;
const int *p = &count;
//打印count次字符串Hello C++
for(int i = 0; i < *p; i++)
{
cout << "Hello imooc" << endl;
}
return 0;
}
using namespace std;
int main(void)
{
//定义常量count
const int count = 3;
const int *p = &count;
//打印count次字符串Hello C++
for(int i = 0; i < *p; i++)
{
cout << "Hello imooc" << endl;
}
return 0;
}
#include <iostream>
using namespace std;
int main(void)
{
int x = 3;
//定义引用,y是x的引用
int &y=x;
//打印x和y的值
cout<<x<<endl;
cout<<y<<endl;
//修改y的值
y = 10;
//再次打印x和y的值
cout<<x<<" "<<y<<endl;
return 0;
}
using namespace std;
int main(void)
{
int x = 3;
//定义引用,y是x的引用
int &y=x;
//打印x和y的值
cout<<x<<endl;
cout<<y<<endl;
//修改y的值
y = 10;
//再次打印x和y的值
cout<<x<<" "<<y<<endl;
return 0;
}
为什么定义用的int getMax(int count,int arr[])
后面输出用的cout<<getMax(3,numArr[3])<<endl;
就提示错误呢?
后面输出用的cout<<getMax(3,numArr[3])<<endl;
就提示错误呢?