C语言程序设计教程(第三版)课后习题8.7 (C语言代码) 摘要:#include <stdio.h> #include <string.h> int yuanyin(char a[],char b[]) { int i,n; int j=0; n…… 题解列表 2017年07月31日 0 点赞 0 评论 1131 浏览 评分:9.9
提取字符串之java 摘要:StringBuilder 是 Java 中用于处理字符串的可变类。它属于 java.lang 包,提供了一种比直接使用 String 类更有效的方式来构建和修改字符串。StringBuilder 对…… 题解列表 2023年12月17日 0 点赞 0 评论 182 浏览 评分:9.9
[编程入门]自定义函数之字符提取 摘要:解题思路:可调用函数,也可以不调用函数注意事项:参考代码:1. #include <stdio.h> void fasan(char b) { if(b=='a'||b==&…… 题解列表 2022年10月03日 0 点赞 0 评论 121 浏览 评分:9.9
关于 str(input().split()) input().split()的区别 摘要:解题思路:注意事项:参考代码:s=str(input().split())s2=input().split()print(type(s))print(type(s2))j=1for i in s: …… 题解列表 2021年11月04日 0 点赞 0 评论 930 浏览 评分:9.9
[编程入门]自定义函数之字符提取-题解(C语言描述(不用scanf输入)) 摘要:```c #include int main() { int j = 0; char String[1000], vowels[1000]; fgets(Strin…… 题解列表 2020年01月28日 0 点赞 2 评论 1308 浏览 评分:9.9
自定义函数之字符提取 摘要:解题思路:调用三个字符数组str1,str2,str3,字符数组str1是用来输入字符串,字符数组str3是放入元音字母(有顺序排列),字符数组str2是用来存放str1中包含元音字母。第一个循环是为…… 题解列表 2021年04月10日 0 点赞 0 评论 570 浏览 评分:9.9
编写题解 1033: [编程入门][C语言]自定义函数之字符提取 摘要:#include<stdio.h> void check(char a[]) { int i; int fg1=0,fg2=0,fg3=0,fg4=0,fg5=0;//在循环外定义,用来使…… 题解列表 2022年05月19日 0 点赞 0 评论 221 浏览 评分:9.9
编写题解 1033: [编程入门]自定义函数之字符提取(简单明了) 摘要:```c //自定义函数之字符提取 #include #include void StrExt(){ char s[100]; gets(s);//将输入的字符串存到数组s中 …… 题解列表 2022年08月13日 0 点赞 0 评论 292 浏览 评分:9.9
自定义函数之字符提取 摘要:解题思路:注意事项:参考代码#include<stdio.h>#include<string.h>void yy(char a[],char b[]){ int i,j=0; for(i=…… 题解列表 2023年11月26日 0 点赞 0 评论 110 浏览 评分:9.9
自定义函数之字符提取,很完全 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void Vowel(char str[]){ int i = 0, j = 0; ch…… 题解列表 2023年07月23日 0 点赞 0 评论 72 浏览 评分:9.9