開發平台(Platform): (Ex: Win10, Linux, ...)
Win10
編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出)
dev c++
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
無
問題(Question):
執行問題
餵入的資料(Input):
輸入兩個數字
ex:4 12
預期的正確結果(Expected Output):
1 2 4
錯誤結果(Wrong Output):
沒有跑出東西
程式碼(Code):(請善用置底文網頁, 記得排版,禁止使用圖檔)
#include<stdio.h>
#include<stdlib.h>
int main()
{
int a,b,i;
printf("請由小到大輸入兩個數字,系統將取出兩數字的公因數”);
scanf("%d%d,&a,&b");
for(i=0;i<=a;i++)
if(a%i==0&&b%i==0)
printf("%d ",i);
system("pause);
return 0;
補充說明(Supplement):
想問各位我這個程式那邊的邏輯出現問題呢?
希望各位可以稍微給我一點想法
詳細的程式我會自己下去實作的
因為剛開始接觸程式所以還有很多東西不懂
還請各位見晾
先謝過各位了!