- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将某些变量写入文件,但奇怪的是,在我将其写入文件后,其中 2 个变量没有写入文件。变量是平均和等级。
这里是代码:
// Function to modify a student's exam scores.
void ArtStudent::modifyScore(string newName, int newIndian, int newEnglish, int newMath, int newHistory, int newMoral, int newEcon, int newCommerce, int newArt) {
map<string, tuple<int, char,int, int, int, int, int, int , int, int> > data;
// Read file and fill data map
ifstream studentRec("ArtStudentRecord.txt");
string line;
while (getline(studentRec, line))
{
string name;
int studentNo;
char gender;
int indian = 0;
int english = 0;
int math = 0;
int history = 0;
int moral = 0;
int economic = 0;
int commerce = 0;
int art = 0;
stringstream ss(line);
ss >> name >> studentNo >> gender >> indian >> english >> math >> history >> moral >> economic >> commerce >> art ;
data[name] = make_tuple(studentNo, gender, indian, english, math, history, moral, economic, commerce, art);
}
studentRec.close();
// Modify data
auto it = data.find(newName) ; // gets current student record from the map
if (it == data.end()) // student not in map, that's an error
return ;
// now it->second holds your student data
// an auto here could be better, but we want to be sure of type
auto studentNo = get<0>(it->second) ;
auto gender = get<1>(it->second) ;
// Modify Data
data[newName] = make_tuple(studentNo, gender, newIndian,newEnglish, newMath, newHistory, newMoral, newEcon, newCommerce, newArt);
// Open same file for output, overwrite existing data
ofstream ofs("ArtStudentRecord.txt");
for (auto entry = data.begin(); entry != data.end(); ++entry)
{
tie(studentNo, gender, newIndian,newEnglish, newMath, newHistory, newMoral, newEcon, newCommerce, newArt) = entry->second;
double average = averageScore(newIndian,newEnglish, newMath, newHistory, newMoral, newEcon, newCommerce, newArt);
char grade = getGrade(newIndian,newEnglish, newMath, newHistory, newMoral, newEcon, newCommerce, newArt, average);
ofs << left << setw(15) << entry->first << setw(15) << studentNo << setw(15) << gender << setw(15) << newIndian << setw(15) << newEnglish << setw(15) << newMath << setw(15) << newHistory << setw(15) << newMoral << setw(15) <<
newEcon << setw(15) << newCommerce << setw(15) << newArt << setw(15) << right << average << grade << endl;
}
ofs.close();
}
只有两个变量没有写入文件,average 和 gender
为了清楚起见,我有两个函数执行一些算法来计算平均分数并根据平均分数获得分数。
计算平均得分函数
double ArtStudent::averageScore(int malay, int english, int math, int history, int moral, int econ, int commerce, int art) {
double result = (malay + english + math + history + moral + econ + commerce + art) / 8;
return result;
}
获取学生的成绩函数
// get Grade for student
char ArtStudent::getGrade(int malay, int english, int math, int history, int moral, int econ, int commerce, int art, double avScore ) {
if (malay < 60 || english < 60 || math < 60 || history < 60 || moral < 60 || econ < 60 || commerce < 60 || art < 60) {
return 'F';
}
if (avScore < 60) {
return 'F';
} else if (avScore > 59 && avScore < 70){
return 'D';
} else if (avScore > 69 && avScore < 80) {
return 'C';
} else if (avScore > 79 && avScore < 90) {
return 'B';
} else {
return 'A';
}
}
我运行函数后,总是会得到这个结果
Batman 316536 M 33 99 22 31 44 44 55 12
如你所见,它会写入 11 个变量,而它应该是 13 个变量
谢谢。
最佳答案
我将您写入文件的代码部分复制到了文件中,并制作了一个测试模型。我不知道您使用的是什么文本编辑器,您看不到它,但您的最后两个变量也已写入文件。
我相信您的意思是说问题出在变量平均数和年级上,而不是性别上?
平均分和成绩之间没有空格
(...) << std::right << average << grade << std::endl;
它们将作为一个变量出现,如 65C。此外,您使用了 std::right,因此平均值和成绩将与您之前使用 setw(15) 设置的 15 个空格的右侧对齐。 (这会使它们与其他值的距离有点远)
看起来您的值正在写入文件。
这是我测试的代码:
std::ofstream ofs("ArtStudentRecord.txt");
std::string name = "FooBar";
int studentNo = 111111;
char gender = 'M';
int newIndian = 50;
int newEnglish = 80;
int newMath = 50;
int newHistory = 80;
int newMoral = 50;
int newEcon = 80;
int newCommerce = 50;
int newArt = 80;
double average = 65;
char grade = 'C';
ofs << std::left << std::setw(15) << name << std::setw(15) << studentNo
<< std::setw(15) << gender << std::setw(15) << newIndian << std::setw(15)
<< newEnglish << std::setw(15) << newMath << std::setw(15) << newHistory
<< std::setw(15) << newMoral << std::setw(15) << newEcon << std::setw(15)
<< newCommerce << std::setw(15) << newArt << std::setw(15)
<< std::right << average << grade << std::endl;
ofs.close();
结果,
FooBar 111111 M 50 80 50 80 50 80 50 80 65C
(注意平均值和成绩如何与其他值略微分开)
附带说明一下,在使用文件之前,您应该始终检查文件是否已成功打开。
std::ofstream file( "PathOfAFile" );
if ( file.is_open() ) {
// Do things with file
file.close();
}
else {
// ERROR
}
关于c++ - 某些变量不会写入 C++ 中的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31046354/
我有这个代码 var myChart = new FusionCharts("../themes/clean/charts/hbullet.swf", "myChartId", "400", "75
既然写入是立即进行的(复制到内核缓冲区并返回),那么使用 io_submit 进行写入有什么好处? 事实上,它 (aio/io_submit) 看起来更糟,因为您必须在堆上分配写入缓冲区并且不能使用基
我正在使用 mootool 的 Request.JSON 从 Twitter 检索推文。收到它后,我将写入目标 div 的 .innerHTML 属性。当我在本地将其作为文件进行测试时,即 file:
最终,我想将 Vertica DB 中的数据抓取到 Spark 中,训练机器学习模型,进行预测,并将这些预测存储到另一个 Vertica DB 中。 当前的问题是确定流程最后部分的瓶颈:将 Spark
我使用 WEKA 库编写了一个 Java 程序, 训练分类算法 使用经过训练的算法对未标记的数据集运行预测 将结果写入 .csv 文件 问题在于它当前写出离散分类结果(即算法猜测一行属于哪个类别)。我
背景 - 我正在考虑使用 clickonce 通过 clickonce(通过网站)部署 WinForms 应用程序。相对简单的应用程序的要素是: - 它是一个可执行文件和一个数据库文件(sqlite)
是否有更好的解决方案来快速初始化 C 数组(在堆上创建)?就像我们使用大括号一样 double** matrix_multiply(const double **l_matrix, const dou
我正在读取 JSON 文件,取出值并进行一些更改。 基本上我向数组添加了一些值。之后我想将其写回到文件中。当我将 JSONArray 写回文件时,会被写入字符串而不是 JSONArray 对象。怎样才
我为两个应用程序使用嵌入式数据库,其中一个是服务器,另一个是客户端。客户端应用程序。可以向服务器端发送获取数据请求以检索数据并显示在表格(或其他)中。问题是这样的:如何将获取的数据保存(写入)到页面文
是否有更好的解决方案来快速初始化 C 数组(在堆上创建)?就像我们使用大括号一样 double** matrix_multiply(const double **l_matrix, const dou
从问题得出问题:找到所有 result = new ArrayList(); for (int i = 2; i >(i%8) & 0x1) == 0) { result.add(i
由于某种原因,它没有写入 CSV。谁能明白为什么它不写吗? def main(): list_of_emails = read_email_csv() #read input file, cr
关闭。 这个问题是 not reproducible or was caused by typos 。它目前不接受答案。 这个问题是由于错别字或无法再重现的问题引起的。虽然类似的问题可能在这里出现,
我目前正在开发一个保存和加载程序,但我无法获得正确的结果。 编写程序: #include #include #define FILENAME "Save" #define COUNT 6 type
import java.io.*; public class Main2 { public static void main(String[] args) throws Exception {
我需要使用预定义位置字符串“Office”从所有日历中检索所有 iOS 事件,然后将结果写入 NSLog 和 UITextView。 到目前为止,这是我的代码: #import "ViewCo
我正在尝试将 BOOL 值写入 PFInstallation 中的列,但会不停地崩溃: - (IBAction)pushSwitch:(id)sender { NSUserDefaults *push
我以前在学校学过一些简单的数据库编程,但现在我正在尝试学习最佳实践,因为我正在编写更复杂的应用程序。写入 MySQL 数据库并不难,但我想知道让分布式应用程序写入 Amazon EC2 上的远程数据库
是否可以写回到ResourceBundle?目前我正在使用 ResourceBundle 来存储信息,在运行时使用以下内容读取信息 while(ResourceBundle.getBundle("bu
关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。 这个问题是由于错别字或无法再重现的问题引起的。虽然类似的问题可能是on-topi
我是一名优秀的程序员,十分优秀!