如何修复矢量不打印文件中的值

时间:2019-05-22 08:05:38

标签: c++ visual-studio

我正在尝试从文本文件中逐行获取一些值:

userDetails=request.form
Employee_Name = ""
Employee_ID = ""
for item in userDetails:
  if item.upper() == "EMPLOYEE_NAME":
      Employee_Name = userDetails[item]
  if item.upper() == "EMPLOYEE_ID":
      Employee_ID = userDetails[item]

取这些值并将其放入向量中。每行都有要在计算中使用的值。

我的代码:

17.09 284.60 486.01 34.12 12.04 1.20 2.33 36.85 73.44
31.25 196.09 323.26 69.76 47.33 79.82 11.42 27.97 66.61
28.76 41.45 992.29 1.29 42.33 10.83 19.16 5.86 1.88

我的输出是正确的,只是它只输出零: http://localhost:64549/request/list?page=1&dataLakeStatus=1&dataLakeStatus=2

编辑:输入用于文件名。 “ ahu_long.txt”

0 个答案:

没有答案