编译软件 : Dev C++
问题一 :
试产生10个1~16之间的整数乱数,并将它写入二进制档"rand.bin"中。
问题一程式码:
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <io.h>
#include <sys/stat.h>
int main(void)
{
int i,rnd;
int f1;
char str[3];
f1=creat("C:\\Users\\ryan4\\Desktop\\习题选答\\chap12\\hw12_16\\rand.bin",O_CREAT|O_WRONLY|O_BINARY);
if(f1!=-1)
{
for(i=0;i<10;i++)
{
rnd=rand()%16+1;
strcpy(str,itoa(rnd,str,10));
write(f1,str,sizeof(str));
}
close(f1);
printf("档案写入完成!!\n");
}
else
printf("档案开启失败!!\n");
system("pause");
return 0;
}
执行结果:
10 4 15 5 2 13 7 15 3 1
想请问char str[3]是什么意思
问题二 : 修改上述程式码,产生50个1~1000的整数乱数,并将它写入纯文字档"rand.txt"中。
程式码 :
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <io.h>
#include <sys/stat.h>
int main(void)
{
int i,rnd;
int f1;
char str[3];
f1=creat("C:\\Users\\ryan4\\Desktop\\习题选答\\chap12\\hw12_16\\rand.txt",O_CREAT|O_WRONLY|O_TEXT);
if(f1!=-1)
{
for(i=0;i<50;i++)
{
rnd=rand()%1000+1;
strcpy(str,itoa(rnd,str,10));
write(f1,str,sizeof(str));
}
close(f1);
printf("档案写入完成!!\n");
}
else
printf("档案开启失败!!\n");
system("pause");
return 0;
}
执行的错误结果:
名代眝W﹋鵄瞰
想请问为什么会变一坨乱码呢?