[QUOTE=Freeze]#include “stdio.h”
void main()
{
int a,b,c,d=0,temp;
printf(“input two num:”);
scanf(“%d%d”,&a,&b);
if(a>b)
{temp=a;
a=b;
b=temp;
}
else
{for(c=a;c<=b;c++)
d=d+c;
}
printf(“%d\n”,d);
}
[/QUOTE]
yes,it’s right!
可是有一个小问题:能否把两个数相等的情况加进去,编一个新程序。
多谢了!!
>> 本文固定链接: http://www.vcgood.com/archives/3096
#include “stdio.h”
void main()
{
int a,b,c,d=0,temp;
printf(“input two num:”);
scanf(“%d%d”,&a,&b);
if(a>b)
{temp=a;
a=b;
b=temp;
}
else
{for(c=a;c<=b;c++)
d=d+c;
}
printf(“%d\n”,d);
}
#include “stdio.h”
int main()
{
int a,b,c,temp,sum=0;
printf(“input two num:”);
scanf(“%d%d”,&a,&b);
if(a>b)
{ temp=a;
a=b;
b=temp;
sum=a+b;
}
else
{
for(c=a;c<=b;c+=b-a)
sum=sum+c;
}
printf(“a+b=%d+%d=%d”,a,b,sum);
system(“pause”);
return 0;
}
[QUOTE=Freeze]#include “stdio.h”
void main()
{
int a,b,c,d=0,temp;
printf(“input two num:”);
scanf(“%d%d”,&a,&b);
if(a>b)
{temp=a;
a=b;
b=temp;
}
else
{for(c=a;c<=b;c++)
d=d+c;
}
printf(“%d\n”,d);
}
[/QUOTE]
yes,it’s right!
可是有一个小问题:能否把两个数相等的情况加进去,编一个新程序。
多谢了!!