自定义函数之字符类型统计 摘要:#include #include void mm(); int main() { mm(); return 0; } void mm() { char a[100]; …… 题解列表 2022年05月10日 0 点赞 0 评论 356 浏览 评分:0.0
1009: [编程入门]数字的处理与判断 摘要:import java.io.*; /** * 读进来数字,再转换成 String、StringBuffer(可以反转)、char[](每位数字) */ public class …… 题解列表 2022年05月10日 0 点赞 0 评论 240 浏览 评分:0.0
LULU——题解 1012: [编程入门]字符串分类统计 摘要:#include<stdio.h>#include<iostream>#include<string.h>using namespace std;int main(){ int num=0,lette…… 题解列表 2022年05月10日 0 点赞 0 评论 540 浏览 评分:9.9
敲七游戏C++(没对的进来) 摘要:解题思路:不对的99%都是漏了带有7的数字首先是7的倍数,n%7就可以得出;个位:只有7且恰好是7的倍数;十位:x7、7x(以下x均表示任意1-9) x7可以求末尾就行n%10=…… 题解列表 2022年05月10日 0 点赞 0 评论 1995 浏览 评分:6.8
小南解题-多项式输出 摘要:#代码量有点长,但是思路简单、易于理解参考代码:#输入a=int(input())bb=list(map(int,input().strip().split()))#列一个表,存储多项式的次方s=bb…… 题解列表 2022年05月10日 0 点赞 0 评论 302 浏览 评分:0.0
1008: [编程入门]成绩评定 摘要:import java.io.*; /* * if 语句基础题 * */ public class Main { public static BufferedReader i…… 题解列表 2022年05月10日 0 点赞 0 评论 280 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)另类版 摘要:解题思路:i作为输入,j用来求算出位数k求算出他的倒序数组a是用来取各个位数最后按指定格式输出。注意事项:注意换行的位置!!!参考代码:#include<stdio.h>int main() { in…… 题解列表 2022年05月10日 0 点赞 8 评论 331 浏览 评分:9.9
数列问题C++超简单 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; int a[36]; a[1]=3;a[2]=…… 题解列表 2022年05月10日 0 点赞 0 评论 534 浏览 评分:0.0
确定不来看看? 摘要:解题思路:把当前月之前天数加起来 再加上当前日期注意事项:日期需要正确输入参考代码:#include <stdio.h>int main(){ int x,y,s=0; scanf("%d%d",&x…… 题解列表 2022年05月10日 0 点赞 1 评论 266 浏览 评分:6.0
数列有序C++超简单! 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,m,a[101]; while(cin>>n>>…… 题解列表 2022年05月10日 0 点赞 0 评论 372 浏览 评分:0.0