题解列表

筛选

拆分位数 (C语言代码)

摘要:解题思路:int 数据除数取整,456/100=4;求模。注意事项:参考代码:#include<stdio.h>int main(){    int a,b,c,d;    scanf("%d",&a……

拆分位数 (C语言代码)

摘要:解题思路:int 数据除数取整,456/100=4;求模。注意事项:参考代码:#include<stdio.h>int main(){    int a,b,c,d;    scanf("%d",&a……

C语言训练-计算1977!* (C语言代码)

摘要:解题思路:用数组存储即可实现。注意进位,有可能超过100,1000,10000等,所以要用循环实现最后一个进位。注意事项:参考代码:#include<stdio.h> #include <strin……