華爲機試-求最小公倍數-難度簡單

#include "stdio.h" int test(int a, int b) { int temp1 = 0; if ((0 == a)||(0 == b)){ return 0; } while (1){ temp1 += a; if ((temp1 % b) == 0){ break; } } return temp1; } int main(voi
相關文章
相關標籤/搜索