优质题解 junmu1414:最大的字母 (C语言代码) 摘要:解题思路: 1.三个数组,c数组用于存放,分步的将a数组和b数组投入到c数组中 2.首先找到最大的符号是什么,用record记下最大…… 题解列表 2019年01月02日 2 点赞 0 评论 754 浏览 评分:0.0
最大的字母 (C语言代码) 摘要:解题思路:先求出最大字符,然后输出字符串时,再判断字符串中的字符是否是最大字符,是则输出(max)即可。与1232基本一样。参考代码:#include <stdio.h> int main() {…… 题解列表 2019年01月08日 1 点赞 0 评论 1446 浏览 评分:6.3
最大的字母 (C++代码) 摘要:```cpp #include #include #include #include #include using namespace std; int main () { st…… 题解列表 2019年07月25日 0 点赞 0 评论 688 浏览 评分:0.0
最大的字母-题解(C语言代码) 摘要:第一步记下字符串中最大字母的阿斯克码值 第二步循环把刚刚的字符串放到另一个字符串里,同时看看那个字母的阿斯克码值与最大的相等,然后把(DJTU)这段字符串也加到新的字符串中,它的位位置就是这个字母的…… 题解列表 2019年09月01日 0 点赞 0 评论 762 浏览 评分:0.0
最大的字母-题解(C语言代码) 摘要: #include int main(void) { int i = 0; char max = '\0'; char st…… 题解列表 2020年03月10日 0 点赞 0 评论 297 浏览 评分:0.0
最大的字母-题解(C语言代码)简单易懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100],b[100]; int i,j,t,l; whil…… 题解列表 2020年10月01日 0 点赞 0 评论 312 浏览 评分:0.0
最大的字母(C++) 摘要: #include #include #include #include #include #include #include …… 题解列表 2022年02月13日 0 点赞 0 评论 275 浏览 评分:0.0
最大的字母 ( Java代码 ) 摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2022年05月16日 0 点赞 0 评论 159 浏览 评分:9.9
1111111111111111111111111111111111111111111111111111111111111 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string str1="(DJTU)"; char str…… 题解列表 2022年08月06日 0 点赞 0 评论 183 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[101],c; int i,max_sign=…… 题解列表 2023年06月27日 0 点赞 0 评论 90 浏览 评分:0.0