- 已 关闭 * * 。 此 问题 需要 details or clarity 。 当前 不 接受 答案 。
- 想要 改进 此 问题 吗 ? * * 通过 editing this post 添加 详细 信息 并 阐明 问题 。
昨天 关门 了 。
此 帖子 已 在 23 小时 前 编辑 并 提交 审阅 , 无法 重新 打开 帖子 :
原始 关闭 原因 未 解决
Improve this question
#include <iostream>
#include <string>
using namespace std;
int main() {
int score;
int max = 0;
int min = INT_MAX;
int total;
const char* d = "done";
string name;
cout << "Enter data: \n";
for(;;){
cin >> name;
if(name == d){
cout << "-------" << "\n" << "Results \n" << "------- \n"
<< "Minimum: " << min
<< "\nMaximum: " << max
<< "\nTotal: " << total;
break;
}
cin >> score;
if (score > max) {
max = score;
}
if (score < min) {
min = score;
}
total = score + score;
}
}
中 的 每 一 个
例如 , 用户 输入 几 个 名字 和 每个 名字 的 分数 :Chris 500 , Joe 400 , John 300 . 我要 把 我 的 代码 打印 出来 :最 大 值 : chris 500 最 小 值 :John 300 。 目前 我 只能 让 它 打印 出 最 大 值 和 最 小 值 的 值 , 而 不 是 值 前面 的 名称 。 ( 即 最 大 值 :400 个 )
1条答案
按热度按时间pgky5nke1#
我建议将
for(;;)
替换为while(true)
,并使用if
中断循环,以防名称“done”