【超详细】简单易懂的字符串插入(C语言) 摘要:解题思路:因为在原数组上直接操作可能会比较复杂、麻烦,所以我们可以定义3个字符串,第一个、第二个字符串a、b用于输入,第三个字符串c用于操作,最后我们输出的也是第三个字符串c。我们大概可以分为三部走:…… 题解列表 2024年12月05日 0 点赞 0 评论 128 浏览 评分:9.9
数据结构-定位子串 find 函数超简单 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){ // 定义两个字符串变量s1和s2 …… 题解列表 2024年12月05日 0 点赞 0 评论 28 浏览 评分:0.0
1632C语言解决 摘要:解题思路:双重for循环解决问题注意事项:参考代码:#include<stdio.h>int main(){ int n; int i,j; scanf("%d",&n); for(i=1;i<=n;…… 题解列表 2024年12月05日 0 点赞 0 评论 58 浏览 评分:0.0
[编程入门]完数的判断 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int isperfect(int num) { // 判断是不是完数 int i, sum = 0; for …… 题解列表 2024年12月05日 0 点赞 0 评论 255 浏览 评分:0.0
编写题解 2783: 判断是否为两位数 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a; scanf("%d",&a); if(a>=10&&a<100) pri…… 题解列表 2024年12月05日 0 点赞 0 评论 86 浏览 评分:0.0
编写题解 2781: 奇偶ASCII值判断 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ char ch; ch=getchar(); if(ch%2==0) printf("…… 题解列表 2024年12月05日 0 点赞 0 评论 142 浏览 评分:0.0
编写题解 2777: 计算2的幂 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int i,n,sum=1; scanf("%d",&n); for(i=1;i<=n;i+…… 题解列表 2024年12月05日 0 点赞 0 评论 74 浏览 评分:0.0
编写题解 2775: 等差数列末项计算 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a1,a2,n,d; scanf("%d %d %d",&a1,&a2,&n); d…… 题解列表 2024年12月05日 0 点赞 0 评论 37 浏览 评分:9.9
编写题解 1008: [编程入门]成绩评定 摘要:解题思路:题目要求根据输入的整数成绩(0-100),输出对应的成绩等级。成绩等级分为 ‘A’、‘B’、‘C’、‘D’ 和 ‘E’,具体分级标准如下:90分及以上为 ‘A’80-89分为 ‘B’70-7…… 题解列表 2024年12月05日 1 点赞 1 评论 329 浏览 评分:10.0
编写题解 2774: 计算三角形面积 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(){ float x1,x2,x3,y1,y2,y3; double a,b…… 题解列表 2024年12月05日 1 点赞 0 评论 77 浏览 评分:0.0