不用数组的方式 就是麻烦一点 摘要:参考代码:#include<stdio.h>int main(){ int x=0; int i=0; int g=0; int b=0; int t=0; int a,y,n,o=0; scanf…… 题解列表 2022年02月22日 0 点赞 0 评论 120 浏览 评分:0.0
不用数组的解法——1009数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x , n=0 ; int m , i , y , j=1 , k ; …… 题解列表 2022年02月25日 0 点赞 0 评论 196 浏览 评分:9.9
[编程入门]数字的处理与判断-题解(Python代码) 摘要:解题思路:逆序输出想到了reversed函数,但那个用不来,就去搜索了用法注意事项:reserved() 是 Pyton 内置函数之一,其功能是对于给定的序列(包括列表、元组、字符串以及 range(…… 题解列表 2022年02月28日 0 点赞 0 评论 137 浏览 评分:6.0
编写题解 1009: [编程入门]数字的处理与判断--解题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<iostream>using namespace std;int main (){ long int a,tem…… 题解列表 2022年03月04日 0 点赞 0 评论 89 浏览 评分:0.0
如何用for循环解决数字的处理与判断 摘要:解题思路:很简单,相信各位程序员们看完代码一目了然!注意事项:for循环和数组的使用参考代码:#include <iostream>using namespace std;int main(){ in…… 题解列表 2022年03月13日 0 点赞 0 评论 218 浏览 评分:0.0
数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int x,i,k=0,g; cin>>x; g=x; fo…… 题解列表 2022年03月25日 0 点赞 0 评论 151 浏览 评分:9.9
用while使输入输出简便化 摘要:参考代码:#include"iostream" int main() { char list[5],l=0; while(std::cin>>list[l])l++; std::cou…… 题解列表 2022年03月27日 0 点赞 0 评论 257 浏览 评分:9.9
数字的处理与判断(C语言) 摘要:解题思路:先尝试把每一位数分离出来,剩下就容易了注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d,e,n,place; scanf("%d",&n)…… 题解列表 2022年03月27日 0 点赞 0 评论 282 浏览 评分:0.0
纯手写无调用函数写法,我是sg 摘要:解题思路:由于忘记了函数,只能纯手写注意事项:参考代码:a=int(input())if a<0 and a>100000: exitelif a<10: print(1) prin…… 题解列表 2022年03月30日 0 点赞 0 评论 149 浏览 评分:6.0
java语言解决1009: [编程入门]数字的处理与判断 摘要:解题思路:1 输入字符串2 for循环顺序输出(加以格式)3 for循环逆序输出注意事项:要使用charAt(),使代码更加完善;如果直接循环;那程序只能接受数字字符。参考代码:import java…… 题解列表 2022年03月31日 0 点赞 0 评论 346 浏览 评分:7.3