编写题解 1009: [编程入门]数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d,e,i,num,result; scanf("%d",&i); if(i>=0 &…… 题解列表 2022年11月21日 0 点赞 0 评论 65 浏览 评分:0.0
编写题解 1009: [编程入门]数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d,e,i,num,result; scanf("%d",&i); if(i>=0 &…… 题解列表 2022年11月21日 0 点赞 0 评论 57 浏览 评分:0.0
最笨的方法 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,c,d,e,f; scanf("%d",&a); if(a>9999){ …… 题解列表 2022年12月01日 0 点赞 2 评论 103 浏览 评分:9.9
编写题解 1009: [编程入门]数字的处理与判断(弱智版讲解) 摘要:解题思路:利用数组来储存对应的数字之后遍历输出注意事项:注意数组遍历的是角标,角标对应的数字才能输出参考代码:#include<stdio.h>int main(){ int j,i=0 ,a; in…… 题解列表 2022年12月04日 0 点赞 0 评论 77 浏览 评分:0.0
数字的处理与判断-横推 摘要:参考代码如下 #include #include//用到pow()函数 int main(void) { int a, t = 0, m, n, q…… 题解列表 2022年12月11日 0 点赞 0 评论 118 浏览 评分:9.9
简单易懂的解决方法 摘要:解题思路:注意事项:参考代码:#include "stdio.h"#include "math.h"int main(){ int a,b,i,c,d,e; //位数 scanf("%d",&a);…… 题解列表 2022年12月14日 0 点赞 0 评论 74 浏览 评分:0.0
通过函数调用的方式完成数字的处理与判断-<C语言> 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int count(int y); void print(int x); void func(int z); int main…… 题解列表 2022年12月14日 0 点赞 0 评论 100 浏览 评分:9.9
c语言小白,数字的处理与判断 摘要:解题思路:em注意事项:en参考代码#include<stdio.h>#include<math.h>int main(){ double pw; int i,a,b,m,n,k=1,t,z[5]={…… 题解列表 2022年12月17日 0 点赞 0 评论 70 浏览 评分:0.0
编写题解 1009: [编程入门]数字的处理与判断 摘要:import java.util.Scanner;public class Main { public static void main(String[] args) throws Excep…… 题解列表 2022年12月23日 0 点赞 0 评论 69 浏览 评分:0.0
[编程入门]数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[10]; scanf("%s",a); …… 题解列表 2022年12月25日 0 点赞 0 评论 69 浏览 评分:0.0