C语言考试练习题_保留字母 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int i,sum=0; char v[100];…… 题解列表 2018年05月31日 0 点赞 0 评论 458 浏览 评分:0.0
题解 1113: C语言考试练习题_保留字母 摘要:解题思路:注意事项:参考代码:解1;#include<stdio.h>#include<string.h>#include<ctype.h>int main(){ char a[100]={&#…… 题解列表 2022年12月28日 0 点赞 0 评论 66 浏览 评分:0.0
1113-保留字母 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;int main(){ string s,s1; getli…… 题解列表 2022年10月06日 0 点赞 0 评论 66 浏览 评分:0.0
题目1113 保留字母 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class 测试 { public static void main(String[] args) …… 题解列表 2023年07月15日 0 点赞 0 评论 105 浏览 评分:0.0
C语言考试练习题_保留字母-题解(C语言代码) 方法简单! 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h> // 字符串函数int main(){ char a[100]; //定义数组 …… 题解列表 2020年11月30日 0 点赞 0 评论 260 浏览 评分:0.0
WU-C语言考试练习题_保留字母 (C语言代码) 摘要:参考代码:#include<stdio.h> int main() { char str[80],*p; int i; p=str; gets(str); for(i=0;st…… 题解列表 2017年12月18日 3 点赞 0 评论 1084 浏览 评分:0.0
作弊的方法。。C语言考试练习题_保留字母 (C语言代码)还没学数组,没办法。。 摘要:解题思路:注意事项:因为测试数据中长度没有超过80,所以可以用这种方法做这个题。当然只限这个网站的这个题。。。参考代码:#include<stdio.h> int main() { ch…… 题解列表 2019年02月08日 1 点赞 0 评论 809 浏览 评分:0.0
加油速度速度还是有点慢 摘要:解题思路:注意事项:没有用删除的方法,逆向思维参考代码:s=input()l2=[]for i in s: if (i>='A' and i<='Z')or( i…… 题解列表 2022年05月27日 0 点赞 0 评论 134 浏览 评分:0.0
C语言考试练习题_保留字母-题解(C语言代码) 摘要:```c //对应的a-z的acsii码 #include #include int main() { char arr[100]; gets(arr); int le…… 题解列表 2019年12月17日 0 点赞 0 评论 552 浏览 评分:0.0
C语言考试练习题_保留字母 (C++代码) 摘要:解题思路:使用另一个数组就不用考虑删除的情况注意事项:参考代码:#include <string.h>#include <stdio.h>int main (){ char s[80],a[80]; …… 题解列表 2018年06月22日 0 点赞 0 评论 303 浏览 评分:0.0