Matlab解题急用 :求〔2,999〕中同时满足于下列所有条件的数,要求:该数各位数字之和为奇数;该数是素数
1个回答
展开全部
>>j=1;
>>for n=2:999
sum=0;
a=n;
while(a)
sum=sum+mod(a,10);
a=floor(a/10);
end
if(mod(sum,2)==1)
for i=2:floor(sqrt(n))+1
if(mod(n,i)==0)break;
end
end
if(i>floor(sqrt(n)))
x(j)=n;
j=j+1;
end
end
end
>> x
x =
Columns 1 through 15
3 5 7 23 29 41 43 47 61 67 83 89 113 131 137
Columns 16 through 30
139 151 157 173 179 191 193 197 199 223 227 229 241 263 269
Columns 31 through 45
281 283 311 313 317 331 337 353 359 373 379 397 401 409 421
Columns 46 through 60
443 449 461 463 467 487 557 571 577 593 599 601 607 641 643
Columns 61 through 75
647 661 683 719 733 739 751 757 773 797 809 821 823 827 829
Columns 76 through 87
863 881 883 887 911 919 937 953 971 977 991 997
>>for n=2:999
sum=0;
a=n;
while(a)
sum=sum+mod(a,10);
a=floor(a/10);
end
if(mod(sum,2)==1)
for i=2:floor(sqrt(n))+1
if(mod(n,i)==0)break;
end
end
if(i>floor(sqrt(n)))
x(j)=n;
j=j+1;
end
end
end
>> x
x =
Columns 1 through 15
3 5 7 23 29 41 43 47 61 67 83 89 113 131 137
Columns 16 through 30
139 151 157 173 179 191 193 197 199 223 227 229 241 263 269
Columns 31 through 45
281 283 311 313 317 331 337 353 359 373 379 397 401 409 421
Columns 46 through 60
443 449 461 463 467 487 557 571 577 593 599 601 607 641 643
Columns 61 through 75
647 661 683 719 733 739 751 757 773 797 809 821 823 827 829
Columns 76 through 87
863 881 883 887 911 919 937 953 971 977 991 997
追问
嘻嘻 谢谢您
还想问您个问题 :用循环语句形成一个有20个分量的数组,满足fibonacci规则,令第K+2个元素满足a(k+2)=a(k)+a(k+1)。k=1,2,...... 。a1=1,a2=1
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |