整除的尾數
problem description
乙個整數,只知道前幾位,不知道末二位,被另乙個整數除盡了,那麼該數的末二位該是什麼呢?
input
輸入資料有若干組,每組資料報含二個整數a,b(0
output
對應每組資料,將滿足條件的所有尾數在一行內輸出,格式見樣本輸出。同組資料的輸出,其每個尾數之間空一格,行末沒有空格。
sample input
200 40
1992 95
0 0sample output
00 40 80
15ac code:
<
stdio.h
>
intmain()c =
1;printf(
"%02d
", i);}}
printf("\n
");}return0;
}
HDOJ 2099 整除的尾數
problem description 乙個整數,只知道前幾位,不知道末二位,被另乙個整數除盡了,那麼該數的末二位該是什麼呢?input 輸入資料有若干組,每組資料報含二個整數a,b 0 output 對應每組資料,將滿足條件的所有尾數在一行內輸出,格式見樣本輸出。同組資料的輸出,其每個尾數之間空一...
hdoj2099整除的尾數(數學)
problem description 乙個整數,只知道前幾位,不知道末二位,被另乙個整數除盡了,那麼該數的末二位該是什麼呢?input 輸入資料有若干組,每組資料報含二個整數a,b 0 include include includeusing namespace std int main else...
hdu 2099 整除的尾數
從這個題目領悟了自己之前沒有注意的一些東西,在後面總結,這裡先貼 include include include using namespace std int main int cnt 0 for int i 0,j 0 i 100 i if a 100 i b 0 cout 1 在開陣列的時候c...