1033: [编程入门]自定义函数之字符提取——题解 摘要:解题思路:C语言没有字符串变量,只能用字符数组存放字符串,所以先定义两个长度100的数组(够用了吧)str[100],character[100]。用gets函数录入一段字符串,调用自定义函数判断st…… 题解列表 2021年05月09日 0 点赞 0 评论 538 浏览 评分:6.0
寻找元音字母,我们是专业的 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int get(char s[],char t[]){ int len=strlen(s); int…… 题解列表 2021年04月27日 0 点赞 0 评论 469 浏览 评分:6.0
[编程入门]自定义函数之字符提取 摘要:解题思路:先将字符串转为char数组,for范围循环对单个字符进行判断注意事项:需要掌握for的范围循环参考代码:import java.util.Scanner;public class Main{…… 题解列表 2021年04月18日 0 点赞 0 评论 111 浏览 评分:0.0
自定义函数之字符提取 摘要:解题思路:调用三个字符数组str1,str2,str3,字符数组str1是用来输入字符串,字符数组str3是放入元音字母(有顺序排列),字符数组str2是用来存放str1中包含元音字母。第一个循环是为…… 题解列表 2021年04月10日 0 点赞 0 评论 561 浏览 评分:9.9
题目 1033: [编程入门]自定义函数之字符提取 摘要:def fun(str): ls = [] for i in str: if i == 'a' or i == 'e' or i == …… 题解列表 2021年04月06日 0 点赞 0 评论 157 浏览 评分:0.0
自定义函数之字符提取 摘要:#include<stdio.h>#include<string.h>int main(void){ char a[100],b[100]; gets(a); int len; len=strlen(…… 题解列表 2021年03月30日 0 点赞 0 评论 75 浏览 评分:0.0
一种指针的写法(C++) 摘要:解题思路:先读取一个字符串,再通过函数处理后返回char*。注意事项:注意末尾填充‘\0’;参考代码:#include<iostream> char* CharExtraction(char* p1…… 题解列表 2021年03月28日 0 点赞 0 评论 620 浏览 评分:9.9
[编程入门]自定义函数之字符提取 (C语言代码)通俗易懂 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ char s[101]; //定义输入的字…… 题解列表 2021年03月14日 0 点赞 0 评论 136 浏览 评分:0.0
自定义函数之字符提取 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void copy(char a[], char b[]){ int length,j=0; len…… 题解列表 2021年02月25日 0 点赞 0 评论 118 浏览 评分:0.0
[编程入门]自定义函数之字符提取-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>void fun(char *a,char *b){ in…… 题解列表 2021年02月17日 0 点赞 0 评论 112 浏览 评分:6.0