/ 科创班 /

记录详情

Runtime Error

/in/foo.c: In function 'main':
/in/foo.c:12:1: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
 while (t = num1%num2)
 ^~~~~
# 状态 耗时 内存占用
#1 Runtime Error 2ms 256.0 KiB
#2 Runtime Error 2ms 256.0 KiB
#3 Runtime Error 2ms 256.0 KiB
#4 Runtime Error 1ms 256.0 KiB
#5 Runtime Error 2ms 256.0 KiB
#6 Runtime Error 2ms 256.0 KiB
#7 Runtime Error 1ms 256.0 KiB
#8 Runtime Error 1ms 256.0 KiB
#9 Runtime Error 2ms 256.0 KiB
#10 Runtime Error 1ms 256.0 KiB

代码

#include <stdio.h>

int main()

{

int num1, num2, t,p;
scanf("%d,%d", &num1, &num2);   

p = num1*num2;

while (t = num1%num2)

{

num1 = num2;    

num2 = t;        

}

p = p / num2;

printf("%d,%d",num2,p);

return 0;

}

信息

递交者
类型
递交
题目
5.3最大公约数与最小公倍数
题目数据
下载
语言
C
递交时间
2018-07-18 21:20:39
评测时间
2018-07-18 21:20:39
评测机
分数
0
总耗时
21ms
峰值内存
256.0 KiB