在这个程序中 如何输出i的结果?
#include <stdio.h>
main()
{
int m,n,i;
m=7;n=5;i=1;
do
{if(i%m==0)
if(i%n==0)
{printf("%d\n",i);
break;
}
i++;}
while(i!=0);