判定字符位置 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main(){ char str[100]; scanf("%s",str)…… 题解列表 2017年10月22日 0 点赞 0 评论 1222 浏览 评分: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 评论 897 浏览 评分: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 评论 931 浏览 评分:0.0
蓝桥杯算法训练VIP-判定字符位置 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> using namespace std; int main(int argc, char *…… 题解列表 2019年05月10日 0 点赞 0 评论 489 浏览 评分:0.0
蓝桥杯算法训练VIP-判定字符位置-题解(C语言代码) 摘要:#include #include int main() { int l,i; char a[100]; gets(a); l=strlen(a); for(i=0;i…… 题解列表 2020年02月02日 0 点赞 0 评论 439 浏览 评分: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 评论 425 浏览 评分:0.0
蓝桥杯算法训练VIP-判定字符位置-题解(C语言代码)一遍读入输出 摘要:一遍读入输出 ```c #pragma warning(disable:4996) #include #include #include #include int main()…… 题解列表 2020年02月12日 0 点赞 0 评论 558 浏览 评分:0.0
蓝桥杯算法训练VIP-判定字符位置-题解(C语言代码) 摘要: #include #include #define N 20 int main() { char str[N]; int i,n…… 题解列表 2020年04月15日 0 点赞 0 评论 513 浏览 评分:0.0
蓝桥杯算法训练VIP-判定字符位置-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { char s[100]; int i = 0; gets(s); …… 题解列表 2020年12月26日 0 点赞 0 评论 223 浏览 评分:0.0
111111111111111111111111111111111111111111111111111111 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[101]; gets(str); int len=strl…… 题解列表 2022年08月08日 0 点赞 0 评论 284 浏览 评分:0.0