问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501

补充C++语句: 补充按照//后面的提示补充语句

发布网友 发布时间:2022-05-22 13:00

我来回答

2个回答

热心网友 时间:2024-03-10 05:43

#include <iostream>
#include <iomanip>
using namespace std;
int main( )
{
  float *monthSales;
  float total = 0;
  float average;
  int numOfSales;
  int count;
  cout << setiosflags(ios::fixed)<< setprecision(2);
  cout << "How many monthly sales will be processed? ";
  cin >> numOfSales;
  // Fill in the code to allocate memory for the array pointed to by monthSales.
  monthSales = new float[numOfSales];//分配内存,用new分配numOfSales个元素空间

  if ( // Fill in the condition to determine if memory has been allocated (or eliminate this if construct if your instructor tells you it is not needed for your compiler) )
  {//他大意好像是说了如果你的指导员告诉你的编译器不需要就去掉这部分,我的建议是去掉这部分,就是整个if,包括里面的cout和return这部分代码,因为原来的C语言的时代,如果内存用malloc分配失败会返回NULL指针,可以用if判断,但是c++标准如果new分配失败是不会返回NULL指针的,而是抛出一个badalloc的异常,所以if没任何意义,try才有意义,但是没给出try,干脆整个去掉这部分
     cout << "Error allocating memory!\n";
     return 1;
  }
  cout << "Enter the sales below\n";
  for (count = 0; count < numOfSales; count++)
  {
     cout << "Sales for Month number "
       << count + 1//输出第一个要输入的月份的月份号,当然也可以不加1,从0开始,个人以为加1更符合一般习惯,就是输入第一个月份的数额 Fill in code to show the number of the month
       << ":";
       // Fill in code to bring sales into an element of the array
       cin>>monthSales[count];//输入这个月份的到数组里
  }
  for (count = 0; count < numOfSales; count++)
  {
    total = total + monthSales[count];
  }
  average = total/numOfSales;//总额除以月份数目就是平均吧 Fill in code to find the average
  cout << "Average Monthly sale is $" << average << endl;
   // Fill in the code to deallocate memory assigned to the array.
  delete monthSales;//对于简单类型的动态数组不一定非要delete[]
  return 0;
}

热心网友 时间:2024-03-10 05:44

#include <iostream>
#include <iomanip>

using namespace std;

int main()
{
float *monthSales;
float total = 0;
float average;
int numOfSales;
int count;
cout << "How many monthly sales will be processed? ";
cin >> numOfSales;
// Fill in the code to allocate memory for the array pointed to by monthSales.
monthSales = new float[ numOfSales ];

if ( numOfSales < 1 || monthSales == NULL )
{
cout << "Error allocating memory!\n";
return 1;
}

cout << "Enter the sales below\n";

for ( count = 0; count < numOfSales; count++ )
{
cout << "Sales for Month number "
<< count + 1 // Fill in code to show the number of the month
<< ":";
// Fill in code to bring sales into an element of the array
cin >> monthSales[ count ];
}

for ( count = 0; count < numOfSales; count++ )
{
total = total + monthSales[count];
}

average = total / count;// Fill in code to find the average
cout << "Average Monthly sale is $" << average << endl;
delete [] monthSales;// Fill in the code to deallocate memory assigned to the array.
return 0;
}
声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com
erp可以看评论地址吗 淘宝评论url是什么意思? 揭秘:码牌支付风控升级,背后真相揭秘 电脑电视直播软件哪个好用什么软件好电脑看电视直播 潼南子同街学区是哪些 三极管BU406价格和参数? 火锅料放在冰柜忘了插电一个星期给会坏了吗 火锅的设备有哪些 火锅餐厅厨房有哪些 小火锅厨房设备有哪些 补充句子,注意提示语的区别 我安装MATLAB 时出现了补充中的提示,不知道怎么办,请各位大侠帮帮忙~ 补充句子把提示语写具体难道你没有吃早餐吗小红怎么的说? 360浏览器的地址保存的地方(不是收藏夹)一重启电脑就没有了 但是输入网址的时候还有补充提示 springToolSuite没有代码补充提示 将句子中的提示语补充完整我们终于又见面了丽丽该怎么说? 梦幻飞行旗补充提示关闭 补充提示语 照样子补充提示语。小刚什么:“还是我赢了吧!”? 谁能视频解码与不解码什么区别 为什么视频不能解码 ios 系统中,h.264 视频流可以硬件解码吗 有没有大神能把这个照片做QQ头像可以全部显示出来。不会像图二一样 怎么你们对师生恋有什么看法? 如何才能使狗鼻子变黑? 两个月博美鼻子不黑 怎么删除微信上我以前给别人点的赞吧 医疗保险和农村合作医疗的区别 学生交的居民保险跟农村交的医保是一样的吗 虾仁东瓜可以加海鲜菇一起吃吗 根据汉语提示补充句子 根据提示,补充句子。小文 (是什么?) 根据提示补充句子(英语) 第一次使用企业网银,安装U-BANK后打开提示错误,见补充问题中提示: 用U盘装系统出现application error 29005 问题补充:提示如下:write secfor failur STANLEY博士的家1的结局是什么? STANLEY博士的家1怎么样 stanley博士的家1那个证件怎么拿到?我看到了,但是怎么按都不行,是一定要按步骤来吗? stanley博士的家1,2的作者是谁?哪国人?太棒了这个游戏. 《STANLEY博士的家--密室升级版》的橙色钥匙在哪 小米贷款还款,钱被扣,但是还款失败。问客服,说是1-3个工作日会返还。有没遇到同样情况,钱多久能回 笔记本电脑发热会怎么样? 笔记本电脑经常发热问题 你是如何不知不觉放弃了当初的朋友的? 恋爱后,不知不觉放弃了自己的兴趣去配合他,错了吗? 我们有着七零八落的愿望,在不知不觉的季节里不痛不痒的放弃了 啥意思 为什么总是在失去后才知道去珍惜? 谁来帮帮我 得到了却又不知不觉放弃了 不知不觉中走到了人生的瓶颈.到了艰难的时刻、该放弃的终归只有放弃.何必苦苦挽留.最终伤了自己.也害 努力了那么久,突然有一刻想放弃,怎么办?