a b c出現位置

2022-08-31 15:45:13 字數 694 閱讀 6968

現有一式子 a / b. 你需要找出數字 c 在小數點後第一次出現的位置

input

輸入包含三個整數 a, b, c (1 ≤ a

< b ≤ 105, 0 ≤ c ≤ 9).

output

輸出數字 c 第一次在小數點後出現的位置,如果 c 不在小數點後出現輸出 -1

sample input

input

1 2 0
output

2
input

2 3 7
output

-1
sample output

hint

第一組樣例 : 1 / 2 = 0.5000(0) 出現在第二個位置

第二組樣例 : 2 / 3 = 0.6666(6) 7 沒有出現,輸出 -1

當時方法不對,沒做出來 下面是正確做法

#include#include #include #include #include using namespace std;

int main()

}if(i>=100000)

printf("-1\n");

return 0;

}

統計字串出現的位置

問題描述 輸入一行標準的c語言程式,統計其中if,while,for出現的位置.從1開始。思考 問題比較簡單,照常規的思路就行,在這因為對關鍵字if,for,while後面肯定都會跟 的,所以只要判斷 前有這些關鍵字就行,這是c語言的標準語法 c源 include include int main ...

用位置記錄資料出現的頻率

問題 返回第乙個丟失的正數 given an unsorted integer array,find the first missing positive integer.your algorithm should run in o n time and uses constant space.fo...

三個執行緒ABC,交替列印ABC

問題為三線程間的同步喚醒操作,主要的目的就是threada threadb threadc threada 迴圈執行三個執行緒。為了控制線程執行的順序,那麼就必須要確定喚醒 等待的順序,所以每乙個執行緒必須同時持有兩個物件鎖,才能繼續執行。乙個物件鎖是prev,就是前乙個執行緒所持有的物件鎖。還有乙...