1. 程式人生 > >HustOJ - 1007

HustOJ - 1007

log hustoj spa img none 參數 tdi 分享 class

技術分享
 1 #include<stdio.h>
 2 int main ()
 3 {
 4     long long a,b,s;
 5     
 6     while(scanf("%lld%lld",&a,&b)==2)
 7     {
 8         s=a-b;
 9         printf("%lld\n",s);
10     }
11     
12     return 0;
13 }
1007 讀入兩個參數

HustOJ - 1007