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 评论 651 浏览 评分:0.0
1033: [编程入门]自定义函数之字符提取 摘要:解题思路:注意事项:参考代码:def fun(a): b = '' c = 'aeiou' for i in a: if i in c:…… 题解列表 2022年02月21日 0 点赞 0 评论 126 浏览 评分:0.0
题目 1033: [编程入门]自定义函数之字符提取 摘要:def fun(str): ls = [] for i in str: if i == 'a' or i == 'e' or i == …… 题解列表 2021年04月06日 0 点赞 0 评论 156 浏览 评分:0.0
[编程入门]自定义函数之字符提取 (C语言代码) 摘要:#include<stdio.h> #include<string.h> int main() { int len,i; char a[100]; gets(a); len=st…… 题解列表 2019年04月24日 0 点赞 0 评论 395 浏览 评分:0.0
自定义函数之字符提取(入门版) 摘要:参考代码:import java.util.Scanner;//写一函数,将一个字符串中的元音字母复制到另一个字符串,然后输出。public class Strtiqu { public sta…… 题解列表 2022年03月25日 0 点赞 0 评论 233 浏览 评分:0.0
使用双循环遍历求解元因字母 摘要:```c #include int main() { char a[5]={'a','e','i','o','u'}; char b[100]; scanf("%s",b); f…… 题解列表 2021年06月04日 0 点赞 0 评论 221 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.7 (C++代码)使用vector可变长数组,个人用 摘要:解题思路:向量 vector 是一种对象实体, 能够容纳许多其他类型相同的元素, 因此又被称为容器。 与string相同, vector 同属于STL(Standard Template Librar…… 题解列表 2018年11月05日 0 点赞 0 评论 737 浏览 评分:0.0
[编程入门]10行解决字符提取-题解(C++代码) 摘要:解题思路:字符串问题 注意事项:无 参考代码: ```cpp #include using namespace std; char s[10000]; int main(){ …… 题解列表 2021年02月04日 0 点赞 0 评论 208 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.7 (C语言代码) 摘要:解题思路:答案是对的,其中有什么不足,欢迎大家指正。注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[1000],…… 题解列表 2019年02月28日 0 点赞 0 评论 374 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[1024]; char b[100]; int i=0,n=0…… 题解列表 2018年04月06日 0 点赞 0 评论 547 浏览 评分:0.0