开发平台(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):
想问各位我这个程式那边的逻辑出现问题呢?
希望各位可以稍微给我一点想法
详细的程式我会自己下去实作的
因为刚开始接触程式所以还有很多东西不懂
还请各位见晾
先谢过各位了!