[编程入门]自定义函数之字符提取 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int fun(char s[100]){ int i; for(i=0;s[i]!=&…… 题解列表 2019年04月18日 2 点赞 0 评论 559 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.7 (C语言代码) 摘要:/* 2018年5月1日09:23:31 目的: 写一函数,将一个字符串中的元音字母复制到另一个字符串,然后输出。 */ #include <stdio.h> #include <st…… 题解列表 2018年05月01日 0 点赞 0 评论 490 浏览 评分:0.0
[编程入门]自定义函数之字符提取 (C语言代码)不怎么符合题意,但能过就行! 摘要:解题思路:按题模拟注意事项:无参考代码:#include<stdio.h>int main(){ char a[100],*pa; int i; gets(a); for(i=0,pa=a;*(pa+…… 题解列表 2019年06月02日 0 点赞 0 评论 580 浏览 评分:0.0
[编程入门]自定义函数之字符提取-题解(C语言代码) 摘要: #include"stdio.h" void fun(char a[],char b[]) { int i=0,j=0; for(i=0;a[i]!='\0';i++) …… 题解列表 2020年01月31日 0 点赞 0 评论 274 浏览 评分:0.0
琪露诺的编程教室(C++代码) 摘要:解题思路:难道是火山喷发的预兆吗那是在一个雾很大的夏日。山上出现了被令人毛骨悚然的光照亮的红雾,引起了很大的轰动。幻想乡不知为何总是出现红雾,但这次的雾看样子与平时有些不一样。看样子是从间歇泉的深处涌…… 题解列表 2017年12月14日 0 点赞 0 评论 1145 浏览 评分:0.0
让我来写个笨方法 摘要:解题思路:用for循环来进行排序注意事项:莫得参考代码:#include <stdio.h>#include <string.h>int change(char a[],char b[]){ //ch…… 题解列表 2021年10月29日 0 点赞 0 评论 142 浏览 评分:0.0
题解1033不是函数,用的字符指针,提交把数组改大即可 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[4]; …… 题解列表 2018年12月28日 0 点赞 0 评论 609 浏览 评分:0.0
自定义函数之字符提取 摘要:解题思路:注意事项:参考代码:def function(x): aeiou = "aeiou" str = [] for i in x: if i 题解列表 2024年04月18日 0 点赞 0 评论 107 浏览 评分:0.0
[编程入门]自定义函数之字符提取-题解(C语言代码) 摘要: #include int main() { char x; while(~scanf("%c", &x)) { …… 题解列表 2020年06月19日 0 点赞 0 评论 197 浏览 评分:0.0
[编程入门]自定义函数之字符提取 题解 摘要:解题思路:带入函数直接判断是否为元音字母,如是便输出。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;string s;void yy(s…… 题解列表 2022年05月04日 0 点赞 0 评论 122 浏览 评分:0.0