感觉还是需要一定基础的,有些细节上的东西老师并没有提及,但是如果自己不小心大意了绝对会出错。比如fun函数如果放后边,前边一定得事先有声明,否则将会报错
2017-11-25
已采纳回答 / 綇訫
int arr[n];int i;srand(time(NULL));//用时间来当做种子,时间时刻变化,所以就是随机数了for(i=0;i<n;i++){ arr[i]=rand();//根据提供的种子产生随机数}随便说说
2017-11-21
//const
#include <iostream>
#include<stdlib.h>
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;
}
system("pause");
return 0;
}
#include <iostream>
#include<stdlib.h>
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;
}
system("pause");
return 0;
}
最新回答 / 小肥肥985
函数默认值:C++函数定义参数默认值必须放到最后面Void fun(int I,int j=5,int k=10);无实参用默认值,否则实参覆盖默认值函数重载:相同作用域内 同一函数名参数个数和参数类型不同返回值类型可以编译过程中计算机根据参数类型来更该函数名称:getMax(int x,int y,int z);------getMax_int_int_int;重载好处?内联函数:(关键字:inline)编译时将函数体代码和实参代替函数调用语句,速度快定义时:inline max(int a,int b...
2017-11-12