#include <string.h>
#include <iostream>
using namespace std;
int main(void)
{
//在堆中申请100个char类型的内存
char *str = new char[100];
//拷贝Hello C++字符串到分配的堆中的内存中
strcpy(str, "Hello imooc");
//打印字符串
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 imooc");
//打印字符串
cout<<str<<endl;
//释放内存
delete []str;
str=NULL;
return 0;
}
//const
#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 < count; i++)
{
cout << "Hello imooc" << endl;
}
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 < count; i++)
{
cout << "Hello imooc" << endl;
}
return 0;
}
最赞回答 / 程序卓
system("pause")就是从程序里调用“pause”命令,这样在程序运行完后会有一句“请按任意键继续”的指示,只有按一下才会关闭窗口,如果没有的话窗口就直接关闭了,很有可能看不见程序反馈的信息
2017-03-25
int getMax(int arr[],int count)
{ int a=arr[0];
for(int i = 1; i < count; i++)
{ if(a<arr[i])
元素比maxNum大,则获取数组中的值
a=arr[i]; }
}
return a;
}
int main(void)
{
//定义int数组并初始化
int numArr[] = {3, 8, 6,10,55,44,88};
cout << getMax(numArr, 7) << endl;
system("pause");
return 0;
}
{ int a=arr[0];
for(int i = 1; i < count; i++)
{ if(a<arr[i])
元素比maxNum大,则获取数组中的值
a=arr[i]; }
}
return a;
}
int main(void)
{
//定义int数组并初始化
int numArr[] = {3, 8, 6,10,55,44,88};
cout << getMax(numArr, 7) << endl;
system("pause");
return 0;
}