题解 1277: Lucky Word

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

题解 1277: Lucky Word

摘要:参考代码:#include<stdio.h>#include<string.h>int main(){   int a[26]={0};   char b[101];   scanf("%s",b);……

Lucky Word (C++代码)

摘要:解题思路:1.输入字符串;2.统计26个字母出现的次数并存放到数组num中;3.使用sort函数排序;4.查找第一个num中不为0的数字num[i];5.m=num[25]-num[i]就是所求max……

Lucky Word (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int f(int n);int f(int n) { int i; if(n<2) {  re……