自定义函数之字符提取 摘要:解题思路:见代码注意事项:在字符串为'\n'时候提前结束循环,因为有半段有的编译器不会设置这段为'\0'而是乱码,需要提前结束循环。参考代码:#include<stdi…… 题解列表 2023年03月15日 0 点赞 0 评论 80 浏览 评分:0.0
[编程入门]自定义函数之字符提取 摘要:解题思路:注意事项:参考代码:def copy(a): lst="aeiou" for i in a: for j in lst: if i == j:…… 题解列表 2023年02月28日 0 点赞 0 评论 66 浏览 评分:0.0
1033: [编程入门]自定义函数之字符提取 摘要:```cpp #include #include #include using namespace std; /* 题目描述 写一函数,将一个字符串中的元音字母复制到另一个字符串,然后输…… 题解列表 2023年02月20日 0 点赞 1 评论 190 浏览 评分:9.9
自定义函数之字符提取(所有人都看得懂) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char str[100]; char a[100]; int count = 0; scanf("%s", &…… 题解列表 2023年02月06日 0 点赞 0 评论 78 浏览 评分:0.0
自定义函数之字符提取(一通瞎写) 摘要:参考代码 #include #include #include void copy(char* x) { int n; get…… 题解列表 2022年12月27日 0 点赞 0 评论 135 浏览 评分:9.9
函数字符提取简单代码 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100]; int len,i; gets(…… 题解列表 2022年12月26日 0 点赞 0 评论 123 浏览 评分:0.0
简短易懂的 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ char a; while ((a = getchar()) != EOF) { if (a == …… 题解列表 2022年12月12日 0 点赞 0 评论 123 浏览 评分:8.4
1033: [编程入门]自定义函数之字符提取 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>int main(){ char s[1000]; scanf("%s",s); int len=strlen(s),i; …… 题解列表 2022年12月05日 0 点赞 0 评论 90 浏览 评分:9.9
利用循环查找元音字母 摘要:解题思路: 定义2个字符数组,利用循环在字符数组里查找元音字母,如找到了则赋值给另外一个字符数组,然后输出。 ```c #include int main() { char a[100];…… 题解列表 2022年11月27日 0 点赞 0 评论 156 浏览 评分:9.9
自定义函数之字符提取 摘要:解题思路:需要数组进行存储,若遇到元音字母即可输入该数组注意事项:参考代码:#include <stdio.h>void f(char *a,char*b);int main(){ char a[10…… 题解列表 2022年11月27日 0 点赞 0 评论 317 浏览 评分:9.9