自定义函数之字符提取 摘要:解题思路:注意事项:参考代码:#include "stdio.h"#include "string.h"main(){ char a1[81]; int i,n; gets(a1); n=strlen…… 题解列表 2022年01月16日 0 点赞 0 评论 137 浏览 评分:0.0
自定义函数提取字符 摘要:解题思路:注意事项:参考代码:import java.util.Arrays;import java.util.Scanner;public class Main { public static…… 题解列表 2022年01月11日 0 点赞 0 评论 170 浏览 评分:0.0
C++string库,for循环,if判断元音,char数组 摘要:解题思路:string库,for循环,if判断元音,char数组注意事项:暂时不明参考代码:#include<iostream>#include<string>using namespace std;…… 题解列表 2021年12月28日 0 点赞 0 评论 916 浏览 评分:0.0
1033: [编程入门]自定义函数之字符提取 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int fun(char a[],char b[]){ int k=0; char …… 题解列表 2021年12月27日 0 点赞 0 评论 166 浏览 评分:0.0
Switch与CharAt 摘要:解题思路:通过单字符串对比注意事项:用equals时(‘’)是单引号,之前用法参考代码: Scanner sc = new Scanner(System.in); Stri…… 题解列表 2021年12月21日 0 点赞 0 评论 190 浏览 评分:0.0
自定义函数输出原音字符 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <math.h>#include <string.h>void fu(char…… 题解列表 2021年12月19日 0 点赞 0 评论 118 浏览 评分:0.0
滑稽之天下滑稽 摘要:解题思路:gets获取字符串,循环判断,自加,不为零就直接输出注意事项:‘\0’是字符串的末尾参考代码:#include "stdio.h"int main(){ char s[100]; gets(…… 题解列表 2021年12月18日 0 点赞 0 评论 162 浏览 评分:9.0
字符提取-C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int main(){ int j,temp; char n[1000],m[1000]; gets…… 题解列表 2021年12月11日 0 点赞 0 评论 163 浏览 评分:0.0
寻找元音字母 摘要:解题思路:我很绝望,编译说了运行错误,但是我试过,答案是对的,不知道哪里错了注意事项:这个代码不是正确的,我当它留为一个错误示范,但是答案是对的,通不过。参考代码:int x(char* p, cha…… 题解列表 2021年12月03日 0 点赞 0 评论 308 浏览 评分:9.9
自定义函数之字符提取 C语言方法参考 摘要:解题思路:1.定义2个数组并给其中一数组赋值2.提取赋过值的数组中的元音字母并赋值给另一个数组3.将另一个数组中元素通过比大小进行排序注意事项:1.字符串不要忘记加'\0'结束2.不要…… 题解列表 2021年11月30日 0 点赞 0 评论 202 浏览 评分:0.0