鱼C论坛

 找回密码
 立即注册
查看: 1404|回复: 2

[已解决]C++新手循环问题,不知哪错了,编译不通过

[复制链接]
发表于 2020-11-15 10:42:22 | 显示全部楼层 |阅读模式
10鱼币
#include <iostream>
using namespace std;

class CDrawArray
{
public:
    void DoDraw(int num);
}

void CDrawArray::DoDraw(int num)
{
    for(int i = 0; i < num; i++)
    {
        for(int j = 0;j <= i; j++)
            cout<<'*';
        cout<<'\n';
    }
}

int main()
{
    int num = 5;
    CDrawArray myDraw;
    myDraw.DoDraw(num);

    return 0;
}
最佳答案
2020-11-15 10:42:23
class CDrawArray
{
public:
    void DoDraw(int num);
}; //这里少个分号

最佳答案

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-11-15 10:42:23 | 显示全部楼层    本楼为最佳答案   
class CDrawArray
{
public:
    void DoDraw(int num);
}; //这里少个分号
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2020-11-15 10:46:35 | 显示全部楼层

太感谢了,我长时间没学C++,发现基础全忘了。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-12 16:14

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表