为了账号安全,请及时绑定邮箱和手机立即绑定
答案中的题目和给的题目根本就不一样,明明做对了,提交说不对,然后以看答案,结果是答案有问题
#include<iostream>
using namespace std;
int main()
{
int x=3;
int &y = x;
cout << x << "," << y << endl;
y = 23;
cout << x << "," << 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(char[100], "Hello imooc");
cout<<str<<endl;
//释放内存
delete []string;
str=NULL;
return 0;
}
int getMax(arr[i],count)
{
for(int i = 1; i < count; i++)
{
if(maxnum<num[i])
{
maxnum=num[i]
}
}
return 0;
}

int main(void)
{
int numArr[3] = {3, 8, 6};

cout << getMax(int a, int b ) << endl;

cout << maxnum << endl;
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 < *p; i++)
{
cout << "Hello imooc" << endl;
}
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)
{
int x = 3;
int &y=x;//定义引用,y是x的引用

cout<<x<<","<<y<<endl;//打印x和y的值
//修改y的值
y = 2;
cout<<x<<","<<y<<endl;//再次打印x和y的值
return 0;
}
C++的重载的两个函数参数数量可以相同也可以不同,当参数数量相同时,只需要对应参数类型不同即称为重载
答案的解析 一语惊醒梦中人!
引用不能单独存在
有人知道这编程的软件是哪个吗??
判断条件给错了吧,应该是判断输出8。因为8>6...
讲得挺好 函数名用些有意义的名称是否会好些
课程须知
本课程是C++初级课程 熟练掌握C语言开发语言基础语法
老师告诉你能学到什么?
1、C++语言引用的魅力 2、C++语言const的用法 3、C++语言函数默认值及函数重载 4、C++语言内存管理

微信扫码,参与3人拼团

意见反馈 帮助中心 APP下载
官方微信
友情提示:

您好,此课程属于迁移课程,您已购买该课程,无需重复购买,感谢您对慕课网的支持!

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消