Problem E: 存钱
[Creator : ]
Description
奥特曼在银行账户里有100元。经过了下面的操作:
- 往里面存了10元;
- 购物花掉了20元;
- 把里面的钱全部取出。
#include<iostream>
using namespace std;
int main() {
int b = 100; // 初始余额
b = _____;
cout << b << endl;
b = _____;
cout << b << endl;
b = _____;
cout << b << endl;
return 0;
}