c++ - 二维数组和嵌套循环

标签 c++ arrays loops nested dimensional

<分区>

我正在尝试使用二维数组和嵌套循环打印出三年中 12 个月的销售额。我很困惑。有人可以告诉我使用这些方法我的代码做错了什么。我不想要其他选择。

#include "stdafx.h"
#include <iostream>
#include <string>

using namespace std;
int x = 0;
int v = 0;
int y = 0;
int sum = 0;
const int year = 3;
const int month = 12;

int _tmain(int argc, _TCHAR* argv[])
{
    int sales[year][month];
    char * date[12] = {"january", "february", "march", "april", "may", "june", "july", "august", "september", "october", "november", "december"};
    for(int z = 0; z < 3; z++)
    {
        {
            cin >> v;
            sales * year[z] = v;
        }

        for(int x = 0; x < 12; x++)
        {
            cout << "Please enter the sales for month " << date[x] << ":\n";
            cin >> y;
            sales * month[x] = y;
            sum += y;
        }
    }
    cout << "There are the sales of the c++ crook: \n";

    cout << sales[3][12] << endl;
    //cout << "Month 1 = " << year[0] << "   " << month[0] << endl;
    //cout << "Month 2 = " << year[0] << "   " << month[1] << endl;
    //cout << "Month 3 = " << year[0] << "   " << month[2] << endl;
    //cout << "Month 4 = " << year[0] << "   " << month[3] << endl;
    //cout << "Month 5 = " << year[0] << "   " << month[4] << endl;
    //cout << "Month 6 = " << year[0] << "   " << month[5] << endl;
    //cout << "Month 7 = " << year[0] << "   " << month[6] << endl;
    //cout << "Month 8 = " << year[0] << "   " << month[7] << endl;
    //cout << "Month 9 = " << year[0] << "   " << month[8] << endl;
    //cout << "Month 10 = " << year[0] << "   " << month[9] << endl;
    //cout << "Month 11 = " << year[0] << "   " << month[10] << endl;
    //cout << "Month 12 = " << year[0] << "   " << month[11] << endl;

    //cout << "Month 1 = " << year[1] << "   " << month[0] << endl;
    //cout << "Month 2 = " << year[1] << "   " << month[1] << endl;
    //cout << "Month 3 = " << year[1] << "   " << month[2] << endl;
    //cout << "Month 4 = " << year[1] << "   " << month[3] << endl;
    //cout << "Month 5 = " << year[1] << "   " << month[4] << endl;
    //cout << "Month 6 = " << year[1] << "   " << month[5] << endl;
    //cout << "Month 7 = " << year[1] << "   " << month[6] << endl;
    //cout << "Month 8 = " << year[1] << "   " << month[7] << endl;
    //cout << "Month 9 = " << year[1] << "   " << month[8] << endl;
    //cout << "Month 10 = " << year[1] << "   " << month[9] << endl;
    //cout << "Month 11 = " << year[1] << "   " << month[10] << endl;
    //cout << "Month 12 = " << year[1] << "   " << month[11] << endl;
    //cout << "The annual sales for c++ crook is: " << sum << " ;]";
    cin.get();
    cin.get();


    return 0;
}

最佳答案

一些事情:

1) 您要确保表达式左侧的内容是有效的“左值”——也就是说,它转换为可以存储 RHS 求值结果的位置。像这样的一行

sales *month[x] = v;

不满足。

另一个错误:声明数组时

sales[year][month];

您需要确保 yearmonth 都存在(已声明)并且具有有效值(可能是 312?) - 你有一个名为 date 的数组,但你指的是 month in

sales * month[x] = v;

正如我提到的,您不能只将等式左边的东西相乘。你可能会考虑

sales[year][month] = v;

在你的例子中,你的外循环 z02,- 那可能是你的 year;并且内部循环从 011 所以我假设那是月份。那么你可能会做

sales[z][x] = y;

您可能真的想记录“这些销售数字适用的年份”,在这种情况下您需要创建一个数组

salesYears[3];

并将年的值存储在那里。当您需要输入时提示用户是一个非常好的主意 -

std::cout << "Please enter the year of the sales" << std::endl;

等等

这些只是一些提示。你的代码真的很乱。记住:

Declare all variables
Make sure all arrays are the right size
Prompt for inputs
Check that inputs are valid
Address 2D arrays with arrayName[index1][index2]
Thing on left hand side of equation must be "valid lvalue"
You might need additional variables to store both the year and the sales

关于c++ - 二维数组和嵌套循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20206948/

相关文章:

C++ 无法弄清楚如何从用户输入跳转到开关

java - 如何在 Java 上列出倒三角形上的数字

C++ - 没有用于调用 <类方法> 的匹配函数

c++ - 在 C++ 中发送到文件

javascript - node.js 如何在字符串中搜索数组中的值

php - 如何将数组转换为逗号分隔的单词字符串?

loops - 在emu8086中打印从1到<用户输入

c++ - Linux 上的 FreeImage 返回 -1 格式

c++ - 套接字数组作为 CreateThread 中的参数

javascript - 在html中打印javascript数组