int tp; while (cin >> tp,tp){}是什么
时间: 2024-05-19 08:12:01 浏览: 116
这是一个输入循环,用于读取一系列整数直到输入的值为 0 为止。具体来说,它会不断读取整数值存储在变量 tp 中,直到输入的值为 0 为止。该代码使用了 C++ 的流输入输出库,其中 `cin` 表示标准输入流。因为 `cin` 在输入一个非整数时会返回 false,所以可以用 `while (cin >> tp, tp)` 判断输入的值是否为 0。如果输入的值为 0 或者输入结束(比如按下了文件结束符),则跳出循环。
相关问题
完成以下题目。 【1】 (程序设计)定义一个 Book(图书)类,在该类定义中包括以下数据成员和成员函数。 数据成员: BookName(书名)、 Price(价格)和 Number(存书数量)、BarCode(条形码)。 成员函数: Display()显示图书的情况; Borrow()将存书数量减 1; Restore()将存书数量加 1。 在 main 函数中,要求创建某一种图书对象,并对该图书进行简单的显示、借阅和归还管理。 输入数据及说明: 2 C++ Programming,TP312_001,10,49.80 Computer science,TP312_100,5,67.50 borrow,TP312_001,2 borrow,TP312_100,1 restore,TP312_100,1 borrow,TP312_100,3 restore,TP312_001,2 borrow,TP312_105,3 说明:第一行n表示书的数量(n<100),第二行到第n+1行表示图书的基本信息(书名,条形码,当前数量,单价)。第n+2行开始表示借(borrow)或还(restore)图书,后面的第一个数据表示书的条形码,第二个数字表示数量。如borrow,TP312_001,2表示借出条形码为TP312_100的书(即C++ Programming) 2本。如果借出数量超过当前数量则借出不成功。 输出结果: C++ Programming:10 Computer science:2 输出当前图书的数量。
Book类的定义如下:
```
class Book {
private:
string BookName; // 书名
double Price; // 价格
int Number; // 存书数量
string BarCode; // 条形码
public:
Book(string name, double price, int number, string barcode) {
BookName = name;
Price = price;
Number = number;
BarCode = barcode;
}
void Display() {
cout << BookName << ":" << Number << endl;
}
bool Borrow(int n) {
if (n > Number) {
return false;
}
Number -= n;
return true;
}
void Restore(int n) {
Number += n;
}
};
```
在 main 函数中,我们可以这样使用 Book 类:
```
int main() {
int n;
cin >> n;
vector<Book> books;
for (int i = ; i < n; i++) {
string name, barcode;
double price;
int number;
cin >> name >> barcode >> number >> price;
books.push_back(Book(name, price, number, barcode));
}
string op, barcode;
int num;
while (cin >> op >> barcode >> num) {
for (int i = ; i < n; i++) {
if (books[i].BarCode == barcode) {
if (op == "borrow") {
if (books[i].Borrow(num)) {
cout << "Borrow success" << endl;
} else {
cout << "Borrow failed" << endl;
}
} else if (op == "restore") {
books[i].Restore(num);
cout << "Restore success" << endl;
}
break;
}
}
}
for (int i = ; i < n; i++) {
books[i].Display();
}
return ;
}
```
输入数据格式如下:
```
2
C Programming TP312_001 10 49.80
Computer science TP312_100 5 67.50
borrow TP312_001 2
borrow TP312_100 1
restore TP312_100 1
borrow TP312_100 3
restore TP312_001 2
borrow TP312_105 3
```
输出结果为:
```
Borrow success
Borrow success
Restore success
Borrow failed
Restore success
Borrow failed
C Programming:8
Computer science:2
```
阅读全文