计算两个整数的差。
输入样例:
1 3 5 7
输出样例:
-2
-2
#include<iostream>#include<fstream>using namespace std;int main(){ ifstream cin("test.txt");//向OJ提交时,注释此句 int num1, num2; while (cin >> num1 >> num2) cout << num1 - num2 << endl; system("pause");//向OJ提交时,注释此句 return 0;}
新闻热点
疑难解答