我快要崩溃了,谁来帮帮我。。。。。。
#include<stdio.h>#include<math.h>
void main()
{ int a,b,m;
printf("a b=?"); //咋屏幕上提示"ab=?"
scanf("%d%d",&a,&b); //在屏幕上等待键盘输入a,b的值
m=1;m++;
for(m>=a&&m>=b)
{ if(m%a==0&&m%b==0)break;
printf("%d",m);
}
}
这是个关于最小公倍数的编程,编译时总显示
G:\ex1_6.cpp(8) : error C2143: syntax error : missing ';' before ')'
G:\ex1_6.cpp(8) : error C2143: syntax error : missing ';' before ')'
我那里少“;”,还两次?