输入两个数字,然后输出两个数之间的整数,每行都输出10个
#include <iostream>using namespace std;
int main()
{
int a,b,w,count=1;
cout<<"enter two namber:";
cin>>a>>b;
if(a>=b){
for(w=b,count=1;w<=a;++w,++count)
cout<<w<<" ";
if(count%10==0){
cout<<endl;
}
}
else{
for(w=a,count=1;w<=b;++w,++count)
cout<<w<<" ";
if(count%10==0){
cout<<endl;
}
}
return 0;
}
不知道哪儿出错了 总是不能每行输出10个...