题解 1034: [编程入门]自定义函数之数字分离

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

完全符合题目要求的答案

摘要:【自己理解一下吧】#pragma warning(disable:4996)#include <stdio.h>#define SIZE 16int main(void){ int num; int ……

容易理解的C语言代码

摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() {     int num, i = 0;     char nums[100];     scan……

[编程入门]自定义函数之数字分离

将每个数字看做是一个字符,打印输出即可#include#includevoidTurn(chara,charb,charc,chard){printf("%c%c%c%c\n",a,b,c,d);}intmain(){chara,b,c,d;scanf("%c%c%c%c",

1019数组解法

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int fun(int n){  int a[4],i;    while(n!=0)    {……