1033: [编程入门]自定义函数之字符提取简单代码
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[1000]; int i,b; scanf(……
1033: [编程入门]自定义函数之字符提取(超级简单)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char c[1000]; int i; gets(c); for(i=0;……
c++同时处理大小写
摘要:解题思路:利用switch处理注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ char ch[1……
编写题解 1033: [编程入门]自定义函数之字符提取 夹带一波return与print的私货
摘要:解题思路:注意事项:写了自己的小错误,也没人看哈哈哈,写的可能乱如果看不懂可以把例子复制下来自己在函数内外敲几个print与return分析一下,勤于动手与动脑才会有收获参考代码:def yuan(a……
自定义函数之字符串提取-详细明白
摘要:参考代码:# include <stdio.h># include <string.h>int f(char str1[], char str2[]){ int i, len, j = 0; ……
自定义函数之字符提取
摘要:解题思路:需要数组进行存储,若遇到元音字母即可输入该数组注意事项:参考代码:#include <stdio.h>void f(char *a,char*b);int main(){ char a[10……
利用循环查找元音字母
摘要:解题思路:
定义2个字符数组,利用循环在字符数组里查找元音字母,如找到了则赋值给另外一个字符数组,然后输出。
```c
#include
int main() {
char a[100];……
1033: [编程入门]自定义函数之字符提取
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>int main(){ char s[1000]; scanf("%s",s); int len=strlen(s),i; ……