应该是fstream吧
题目 437 删掉的边
2013-02-12 21:40:04
|
|
为什么我的WA掉了?
貌似没有什么问题…… #include<iostream> #include<cstdio> using namespace std; int n,m; int main(){ freopen("edges.in","r",stdin); freopen("edges.out","w",stdout); cin>>n>>m;cout<<m-n+1;return 0; } |
|
这道题,输出m-(n-1)就行了……
汗 |