从文件负数C ++中读取

时间:2015-06-13 19:23:55

标签: c++ numbers

我必须从档案中获取数字,其中一些是否定的。那么,我该怎么做呢? (C ++)

现在我正在尝试这个(没有特别的东西):

U1.txt文件:

$("#coupon_code").prop('disabled', true);

我的代码:

4 5 -1 6 -2

1 个答案:

答案 0 :(得分:4)

你的代码基本上是正确的,除了缺少n4的错字。 这样:

ifstream fd("U1.txt");
int n1,n2,n3,n4,n5;
fd>>n1>>n2>>n3>>n4>>n5;

会做你期望的,模数错误条件。