#include <iostream>
int main()
{
std::cout<<"input tow number"<<std::endl;
int v1,v2 = 0;
std::cin>>v1;
std::cin>>v2;
if(v1>=v2){
int v = 0;
v=v1;
v1=v2;
v2=v;}
for(v1;v1!=v2+1;++v1)std::cout<<v1;
return 0;
}
这样就乱成一团了
#include <iostream>
int main()
{
std::cout<<"input tow number"<<std::endl;
int v1,v2 = 0;
std::cin>>v1;
std::cin>>v2;
if(v1>=v2){
int v = 0;
v=v1;
v1=v2;
v2=v;}
for(v1;v1!=v2+1;++v1)std::cout<<v1;
return 0;
}
这样就乱成一团了
你的代码是想输出两整数之间的整数吧,你说限制10个 意思是在命令提示符中 每行10个吗?
那么你可以这样:
int i = 1;
for(v1;v1!=v2+1;++v1,i++)
{
std::cout<<v1<<" ";
if(i==10)
{
std::cout<<endl;
i=1;
}
}