新微赢技术网

标题: [求助]关于随机数的问题 [打印本页]

作者: 最爱水晶    时间: 2009-11-3 02:47
标题: [求助]关于随机数的问题
在1到32767之间任意输入一个数,要求如下形式打印。
如 2853
打印2 8 5 3
作者: 「①冄12號    时间: 2009-11-3 02:47
#include <iostream.h>
#include <stdlib.h>
#include <time.h>
void main()
{
srand(time(0));
int a,b,c,d,e,f;
a=rand()+1;
b=a/10000;
c=a%10000/1000;
d=a%10000%1000/100;
e=a%10000%1000%100/10;
f=a%10000%1000%100%10;
if(b>0)
{
cout<<b<<"\t"<<c<<"\t"<<d<<"\t"<<e<<"\t"<<f<<"\t"<<endl;
}
else if(c>0)
{
cout<<c<<"\t"<<d<<"\t"<<e<<"\t"<<f<<endl;
}
else if(d>0)
{
cout<<d<<"\t"<<e<<"\t"<<f<<endl;
}
else if(e>0)
{
cout<<e<<"\t"<<f<<endl;
}
else
cout<<f<<endl;
}
作者: 牛牛    时间: 2009-11-3 02:47
#include <iostream>
#include <stdlib.h>
#include <time.h>
using namespace std;
void print(int a);
int main()
{
srand(time(0));
int a=rand();
cout<<a<<endl;
print(a);
cout<<endl;
system("pause");
return 0;
}
void print(int a)
{
if(a>10)print(a/10);
cout<<a%10<<" ";
}
试试这个
作者: 秋燕子_児    时间: 2009-11-3 02:47
楼上的朋友,能帮我简要说明下你的思路吗~~
作者: 梦aiq逍遥    时间: 2009-11-3 02:47
void print(int a)
{
if(a>10)print(a/10);
cout<<a%10<<" ";
}

这里递归函数用的不错.
作者: ヤforget♀戀    时间: 2009-11-3 02:47
2楼的,谢谢,不过我想3楼朋友的程序更好些~~
作者: v九天〓云龙    时间: 2009-11-3 02:47
不错不错,佩服!




欢迎光临 新微赢技术网 (http://bbs.weiying.cn/) Powered by Discuz! X3.2