相关代码 |
|
function []=sDmain() clc; clear; sDno=3;%定义3D号码个数 sD=zeros(1,3); rand('state', sum(100*clock)); for i=1:sDno sD(i)=round(9*rand(1,1)); end fid=fopen('3D.txt','at');%输出3D的号码 fprintf(fid,'今天是:%s',datestr(date,26)); fprintf(fid,'号,随机生成的号码是: '); for i=1:sDno %输出红色球 fprintf(fid,'%d',sD(i)); if i fprintf(fid,'|'); end end fprintf(fid,'\n'); fclose(fid);
相关资源 |
|