【1】字符串排序听都没听过 摘要:解题思路:两种输入的方法,就是不知道可以用map吗注意事项:参考代码:#a=[]#for i in range(3):# a.append(input())a,b,c=input(),input…… 题解列表 2022年05月12日 0 点赞 0 评论 117 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.2 (C语言代码) 摘要:解题思路:利用字符串比较函数strcmp设这两个字符串为str1,str2,若str1==str2,则返回零;若str1<str2,则返回负数;若str1>str2,则返回正数。利用if语句判断并依次…… 题解列表 2017年10月18日 2 点赞 0 评论 1646 浏览 评分:0.0
[编程入门]三个字符串的排序 Python解决 摘要:解题思路: 使用列表进行降序注意事项: 字母也可以比较大小,使用sort哦,参考代码:fonta = input()fontb = input()fontc = input()list =…… 题解列表 2021年08月23日 0 点赞 0 评论 276 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.2 (C++代码) 摘要:解题思路:最近新学指针,所以就尝试用指针来解决注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;int main(){ …… 题解列表 2019年02月09日 0 点赞 0 评论 394 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.2 (C语言代码) 摘要:#include<stdio.h> #include<string.h> #define N 80 int main() { int i, j; char str[4]…… 题解列表 2017年10月27日 1 点赞 0 评论 640 浏览 评分:0.0
三目运算符运用 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main() { char a[99],b[99],c[99];//输入字符串 …… 题解列表 2023年09月19日 0 点赞 0 评论 85 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.2 (C语言代码) 摘要:/*简单的字符串函数操作*/ #include<stdio.h> #include"string.h" #include"malloc.h" int main() { char c…… 题解列表 2018年11月20日 0 点赞 0 评论 340 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.2 (C语言代码) 摘要:解题思路和注意事项:先说一下思路,首先需要将字符串比较大小,这个简单,有现成的函数strcmp();接下来我们可以运用另一个函数strcpy()将最小的字符串复制到第一个数组中,依次进行,最后输出。这…… 题解列表 2018年05月03日 0 点赞 0 评论 656 浏览 评分:0.0
[编程入门]三个字符串的排序-题解(Python代码) 摘要:解题思路:注意事项:参考代码:a=input() b=input() c=input() str=[a,b,c] for i in sorted(str): print(i,end=…… 题解列表 2020年08月04日 0 点赞 0 评论 333 浏览 评分:0.0
三个字符串的排序 摘要:参考代码 #include #include #include #define n 100 int main(void) { c…… 题解列表 2023年01月08日 0 点赞 0 评论 109 浏览 评分:0.0