题解 1033: [编程入门]自定义函数之字符提取

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

字符提取-C语言

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int main(){ int j,temp; char n[1000],m[1000]; gets……

自定义函数输出原音字符

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <math.h>#include <string.h>void fu(char……

Switch与CharAt

摘要:解题思路:通过单字符串对比注意事项:用equals时(‘’)是单引号,之前用法参考代码:        Scanner sc = new Scanner(System.in);        Stri……

自定义函数提取字符

摘要:解题思路:注意事项:参考代码:import java.util.Arrays;import java.util.Scanner;public class Main {    public static……

自定义函数之字符提取

摘要:解题思路:注意事项:参考代码:#include "stdio.h"#include "string.h"main(){ char a1[81]; int i,n; gets(a1); n=strlen……

自定义函数之字符提取

摘要:解题思路:1.循环获取字符串中的“aeiou”,存入新的数组中,循环结束后,输出新的数组;注意事项:无参考代码:#include<stdio.h>#include<string.h>int i,x,y……