美文网首页
使用 char* months[MONTHS]={} 这种方式定

使用 char* months[MONTHS]={} 这种方式定

作者: eftales | 来源:发表于2019-11-14 10:53 被阅读0次
#include<iostream>
const int MONTHS=12;
const char* months[MONTHS]={"January","February","March","April","May","June","July","August","September","October","November","December"};
int main()
{
    using namespace std;
    int sales[MONTHS],sum=0;
    for(int i=0;i<MONTHS;i++)
    {
        cout<<"Please enter the sales volume of C++ for FOOLS in "<<months[i]<<endl;
        cin>>sales[i];
        sum+=sales[i];
    }
    cout<<"The sales volume of C++ for FOOLS in this year was "<<sum<<endl;
    return 0;
}

使用 char* months[MONTHS]={} 这种方式定义的字符串数组,字符串与字符串之间并不是紧密相连的,也不是等间距的。

相关文章

  • 使用 char* months[MONTHS]={} 这种方式定

    使用 char* months[MONTHS]={} 这种方式定义的字符串数组,字符串与字符串之间并不是紧密相连的...

  • 获取季度

    select to_char(add_months(add_months(trunc(sysdate-1, 'yy...

  • ⑤ months

    我的队长: 记得今天是什么日子吗?嘻嘻,咱家队长大概是忙得都忘了吧。 队长,⑤个月快乐,属于我们的...

  • ④ months

    我的队长: 补祝一下咱们四个月快乐,谢谢你的温暖陪我渡过了属于我们的第一个寒冬,你说你最喜欢我说的那句“天...

  • Hansy's Log

    It has been 2 months, or may be 7 months, I felt losted. ...

  • Three months

    感谢2018开年遇到的转角和善良。谢谢身边的体谅、照顾和保护。如果可以被保护,当然是件幸运又幸福的事,可同时,自己...

  • six months

    六个月的你变化喜人,咿咿呀呀的会表示抗议,喜爱。什么都往嘴巴里塞,啃脚趾手指无比顺畅,每天噗啊噗天气怎么能放晴?!...

  • Months of the Year

    there are seven days in a week . there are 24 hours in a ...

  • 11 months

    2019年05月01日,晚间10:10,日更第111天。 今日所感之是:11 months. Today my d...

  • 7.14

    2months

网友评论

      本文标题:使用 char* months[MONTHS]={} 这种方式定

      本文链接:https://www.haomeiwen.com/subject/oralictx.html