fgets出现50分的原因 摘要:注意事项:fgets遇到'\n'结束,并且要接收'\n'。也就是说字符串最后一位为'\n'。当有换行符时,就要选择结束流程,不然会在other处多加一,…… 题解列表 2023年10月26日 0 点赞 0 评论 59 浏览 评分:0.0
优质题解 自定义函数之字符类型统计----只得了50分的进来 摘要:解题思路:重点是怎么获取输入的字符串,统计可以用ASCII码统计注意事项:我自己尝试了两种获取输入的方法1、//需要输入数据后有换行符,不然会进入死循环直到数组越界 ch=getchar…… 题解列表 2023年10月12日 0 点赞 0 评论 414 浏览 评分:7.3
自定义函数之字符类型统计 摘要:解题思路:对照ASCII码值写好范围注意事项:参考代码:#include<stdio.h>#include<string.h>char mm(char a[]){ int x=strlen(a)…… 题解列表 2023年09月27日 0 点赞 1 评论 36 浏览 评分:0.0
自定义函数之字符类型统计java 摘要: import java.util.Scanner; public class Main { public static void main(String[] args) { S…… 题解列表 2023年09月13日 0 点赞 0 评论 237 浏览 评分:0.0
[python]自定义函数之字符类型统计 摘要:解题思路:注意事项:参考代码:my_str = input() letter = 0 num = 0 space = 0 other = 0 for i in my_str: if…… 题解列表 2023年08月18日 0 点赞 0 评论 66 浏览 评分:0.0
自定义函数之字符类型统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int tongji(char s1[1000],int m);int main(){ char s…… 题解列表 2023年07月20日 0 点赞 0 评论 76 浏览 评分:0.0
请指正,提交后显示第一个答案不正确 摘要:解题思路:注意事项:参考代码:#include <stdio.h>void f(char a[100]){ int x = 0, y = 0, z = 0, e = 0; for (int…… 题解列表 2023年07月17日 0 点赞 0 评论 45 浏览 评分:0.0
自定义函数之字符类型统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void tongji(char str[100],int out[4]){ int i; …… 题解列表 2023年07月09日 0 点赞 0 评论 68 浏览 评分:0.0
自定义函数 摘要:解题思路:注意事项:很简单,练习练习如何使用自定义方法参考代码:import java.util.Scanner;public class Main2 { public static void …… 题解列表 2023年07月07日 0 点赞 0 评论 131 浏览 评分:0.0
1035题: 自定义函数之字符类型统计 摘要:# 自己写的代码(稍有瑕疵,输出不在主函数中) ```c #include #include int tongji(char a[]){ int z=0,s=0,k=0,q=0,…… 题解列表 2023年07月02日 0 点赞 0 评论 84 浏览 评分:0.0