[编程入门]自定义函数之字符提取-题解(Python代码) 摘要:解题思路:注意事项:参考代码:str = ['a', 'e', 'i' ,'o', 'u']def main(list)…… 题解列表 2020年09月27日 0 点赞 0 评论 580 浏览 评分:9.5
[编程入门]自定义函数之字符提取-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,n; char a[100]; gets(a)…… 题解列表 2020年10月09日 0 点赞 0 评论 129 浏览 评分:0.0
[编程入门]自定义函数之字符提取-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[1000]; int i=0,k; gets(a); k=st…… 题解列表 2020年10月27日 0 点赞 0 评论 205 浏览 评分:0.0
[编程入门]自定义函数之字符提取-题解(C语言代码) 摘要:参考代码:#include <stdio.h>#include <stdlib.h>#include<string.h>void stringget(char *string1,char *strin…… 题解列表 2020年11月17日 0 点赞 0 评论 194 浏览 评分:0.0
[编程入门]自定义函数之字符提取-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void chuli(char str[1000]){ char b[1000]={0}; int …… 题解列表 2020年11月17日 0 点赞 0 评论 292 浏览 评分:0.0
题解 1033:自定义函数之字符提取-题解(Java代码) 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args…… 题解列表 2020年11月25日 0 点赞 0 评论 292 浏览 评分:0.0
[编程入门]自定义函数之字符提取-题解(C语言代码) 喜欢用for循环的过来看看! 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char a[1000],b[1000]; int n,i,j=0; g…… 题解列表 2020年11月29日 0 点赞 0 评论 411 浏览 评分:8.0
[编程入门]自定义函数之字符提取-题解(Java代码) 摘要:知识点:char ch= str.charAt(i);//获取字符串中的单个字符参考代码:import java.util.Scanner;public class Main { public …… 题解列表 2020年12月03日 0 点赞 0 评论 253 浏览 评分:0.0
[编程入门]自定义函数之字符提取-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[100]; int i; scanf("%s", a); for (i = …… 题解列表 2020年12月12日 0 点赞 0 评论 170 浏览 评分:6.0
[编程入门]自定义函数之字符提取-题解(C语言代码) 摘要:解题思路:注意事项:简单方法哈,看官理性看待。参考代码:#include<stdio.h>int main(){ char a[100]; int i; scanf("%s", a)…… 题解列表 2020年12月12日 0 点赞 0 评论 150 浏览 评分:6.0