判定字符位置 (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
判定字符位置 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ string s; int i; cin>>s…… 题解列表 2017年11月06日 1 点赞 0 评论 811 浏览 评分:6.0
判定字符位置 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main(){ char str[100]; scanf("%s",str)…… 题解列表 2017年10月22日 0 点赞 0 评论 1042 浏览 评分:0.0