C语言考试练习题_保留字母 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>#include <string.h>int main(){ char a[80],b[80]…… 题解列表 2017年12月19日 0 点赞 0 评论 618 浏览 评分:0.0
C语言考试练习题_保留字母-题解(C语言代码) 摘要: #include #include int main() { char a[100],b[100]; int i,j=0; …… 题解列表 2020年04月02日 0 点赞 0 评论 261 浏览 评分:0.0
送分了........ 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[150]; int i; gets(a); for(i=0;a[i]!=0…… 题解列表 2024年11月26日 0 点赞 0 评论 93 浏览 评分:0.0
C语言考试练习题_保留字母 (C++代码) 摘要:解题思路:注意事项:可能有空格参考代码:#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <string> #incl…… 题解列表 2018年11月05日 0 点赞 0 评论 407 浏览 评分:0.0
C语言考试练习题_保留字母 摘要:``` import java.util.ArrayList; import java.util.List; import java.util.Scanner; public class …… 题解列表 2022年02月11日 0 点赞 0 评论 103 浏览 评分:0.0
C语言考试练习题_保留字母 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int i,sum=0; char v[100];…… 题解列表 2018年05月31日 0 点赞 0 评论 458 浏览 评分:0.0
C语言考试练习题_保留字母 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[90]; gets(a); int b=strlen(a); …… 题解列表 2022年12月20日 0 点赞 0 评论 45 浏览 评分:0.0
C语言考试练习题_保留字母 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <bits/stdc++.h>using namespace std;int main(int argc, cha…… 题解列表 2019年04月20日 0 点赞 0 评论 1035 浏览 评分:0.0
C语言考试练习题_保留字母-题解(C语言代码)库函数的使用 摘要:再头文件include 中有很多操作字符的库函数,使用以来特别方便。 这里使用的是 int isalpha(int ch); // 如果出是字母返回1,反之返回0 还有很多函数很方便使用: …… 题解列表 2019年06月11日 3 点赞 0 评论 446 浏览 评分:0.0
C语言考试练习题_保留字母-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[80]; int n,i; gets(a); n=strlen…… 题解列表 2021年02月03日 0 点赞 0 评论 164 浏览 评分:0.0