判定字符位置 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main(){ char str[100]; scanf("%s",str)…… 题解列表 2017年10月22日 0 点赞 0 评论 1043 浏览 评分:0.0
111111111111111111111111111111111111111111111111111111 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[101]; gets(str); int len=strl…… 题解列表 2022年08月08日 0 点赞 0 评论 184 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char str[101]; gets(str); str[strlen(str)] = &#…… 题解列表 2023年06月29日 0 点赞 0 评论 62 浏览 评分:0.0
。。自定义函数。。:蓝桥杯算法训练VIP-判定字符位置 (C语言代码) 摘要:解题思路:#include<stdio.h> int fun(char a[100]) { int i,flag=1; for(i=0;a[i];i++) { if(a[i]==…… 题解列表 2019年02月28日 2 点赞 0 评论 780 浏览 评分:0.0
蓝桥杯算法训练VIP-判定字符位置 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> using namespace std; int main(int argc, char *…… 题解列表 2019年05月10日 0 点赞 0 评论 381 浏览 评分:0.0
蓝桥杯算法训练VIP-判定字符位置-题解(C语言代码) 摘要: #include "stdio.h" int main() { char s[100]; int i,m=0; scanf("%s",&s); for(i=0;s[i…… 题解列表 2020年02月11日 0 点赞 0 评论 273 浏览 评分:0.0
蓝桥杯算法训练VIP-判定字符位置-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { char s[100]; int i = 0; gets(s); …… 题解列表 2020年12月26日 0 点赞 0 评论 169 浏览 评分:0.0
蓝桥杯算法训练VIP-判定字符位置-题解(C语言代码) 摘要: #include #include #define N 20 int main() { char str[N]; int i,n…… 题解列表 2020年04月15日 0 点赞 0 评论 287 浏览 评分:0.0
判定字符位置 (C语言代码) 摘要:#include <stdio.h> #include <string.h> int main() { char a[100]; gets(a); int i; for(i=0…… 题解列表 2017年12月09日 0 点赞 0 评论 769 浏览 评分:0.0
判定字符位置(for循环及简单的条件判断) 摘要:解题思路:注意事项:参考代码://返回给定字符串s中元音字母的首次出现位置。英语元音字母只有‘a’、‘e’、‘i’、‘o’、‘u’五个。//若字符串中没有元音字母,则返回0。//只考虑小写的情况。#i…… 题解列表 2022年12月14日 0 点赞 0 评论 111 浏览 评分:0.0