题解 1402: 简单的字符串

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

筛选

字符数组遍历解决

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){      char str[100] = { 0 };//初始化字符数组  ……

简单的字符串

摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main() {        char str[100] = { 0 }; ……

思路即可解题

摘要:解题思路:定义一个结构体,分别含有字母,字母的数字,然后统计,最后输出;注意事项:参考代码:#include<iostream>using namespace std;typedef struct {……

简单的字符串

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){       int n=0;    scanf("%d",&n);    g……

1402: 简单的字符串

摘要:#include<stdio.h> #include<string.h> int main() { int n,i,len;char str[10000]; scanf("%d\n",&n)……

简单的字符串-题解c语言

摘要:#include <stdio.h> int main (void){ int count=0,n;// count 是循环进行的次数,n是需要进行的次数  int i,t=1;  // i 是……

1402: 简单的字符串

摘要:解题思路:开辟一个长度为26的数组,记录字母出现的情况参考代码:#include <stdio.h> #include <string.h> int main () { int i; ……

简单的字符串

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char s[10001],k; int i,j,n,l; scanf("%……