首页 > 数的分解
头像 WBG_TheShy
发表于 2023-02-15 15:39:00
#include <stdio.h> int fun(int n) { int i,j,count=0; while(n>0) { if(n%10==1||n%10==3) return 0; n/=10; } return 1; } in 展开全文

等你来战

查看全部