C语言考试练习题_保留字母 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main(){ int m,n,i,j; char a[80]; get…… 题解列表 2021年10月15日 0 点赞 0 评论 367 浏览 评分:9.9
程序员的表白 摘要:解题思路:找规律暴力输出即可注意事项:参考代码:#include<stdio.h>int main(){ int n; while(~(scanf("%d",&n))){ for(int i=…… 题解列表 2021年10月15日 0 点赞 0 评论 287 浏览 评分:0.0
题解 1390: 大神老白 摘要:解题思路:使用绝对值函数注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n; while((scanf("%d",&n…… 题解列表 2021年10月15日 0 点赞 0 评论 728 浏览 评分:0.0
震宇大神的杀毒软件 摘要:解题思路:这里使用选择排序先排序,然后逆序输出即可注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n; int a[100]; w…… 题解列表 2021年10月15日 0 点赞 0 评论 317 浏览 评分:0.0
[编程入门]数组插入处理-题解(python代码) 摘要:参考代码:A = list(map(int,input().split())) #将第一次输入的元素以整形放入列表 A.append(int(input())) #将第二次输入的一个元素以整形加入…… 题解列表 2021年10月15日 0 点赞 0 评论 898 浏览 评分:9.9
汽水瓶-题解(C语言代码)(写一些小步骤,望得到大家支持) 摘要:解题思路:我第一眼看到这题还以为很难,在草稿上列一下就发现了特点,以下是我思路: 小张空瓶数: 题解列表 2021年10月15日 0 点赞 0 评论 301 浏览 评分:9.9
自定义函数之字符串连接-题解(python) 摘要:参考代码:print(input()+input())#将两次输入的字符串相加并显示 …… 题解列表 2021年10月15日 0 点赞 0 评论 830 浏览 评分:7.3
1048: [编程入门]自定义函数之字符串拷贝-题解(python) 摘要:解题思路:索引注意事项:参考代码:a = int(input())b = input()c = int(input())print(b[c-1::])…… 题解列表 2021年10月16日 0 点赞 0 评论 400 浏览 评分:0.0
压位高精乘法 摘要:解题思路:朴素的高精度乘法是一位一位存数的,而用于存储结果的int(我用的是short)数组中每一个元素显然能存储比9大得多的数,这就造成很多浪费。因而改为每次都进行k位数相乘,最终结果的每一个元素为…… 题解列表 2021年10月16日 0 点赞 0 评论 699 浏览 评分:2.6
1049: [编程入门]结构体之时间设计-题解(python) 摘要:解题思路:注意事项:参考代码:y,m,d = map(int,input().split())m1,m3,m5,m7,m8,m10,m12 = 31,31,31,31,31,31,31m4,m6,m9…… 题解列表 2021年10月16日 0 点赞 0 评论 326 浏览 评分:0.0