四叶玫瑰数c语言怎么编程

四叶玫瑰数c语言怎么编程

可以写成调用函数 #include<stdio.h> void rose(int n) {int a,b,c,d; a=n/1000; b=n/100%10; c=n/10%10; ......