感谢支持,谢谢大家。级数求和 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int i,n; double s=0.0,k; c…… 题解列表 2023年07月12日 0 点赞 0 评论 149 浏览 评分:0.0
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int m,k,ans=0; cin>>m>>…… 题解列表 2023年07月12日 0 点赞 0 评论 237 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>#include <ctype.h> int main() { int p1, p2, p…… 题解列表 2023年07月12日 0 点赞 0 评论 286 浏览 评分:0.0
三角形面积 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(){ float x1,x2,x3,y1,y2,y3,d1,d2,d3,s;…… 题解列表 2023年07月12日 0 点赞 0 评论 171 浏览 评分:0.0
判断数的正负 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n; scanf("%d",&n); if(n>0) printf("posi…… 题解列表 2023年07月12日 0 点赞 0 评论 195 浏览 评分:0.0
编写题解 1034: [编程入门]自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:#include <stdio.h>void fun (int n){ int i; int cnt[10]; for(i=0;i<4;i++){ cnt[3-i]=n…… 题解列表 2023年07月12日 0 点赞 0 评论 145 浏览 评分:0.0
报数问题代码 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int findLastPerson(int n) { int circle[n]; int count = 0; …… 题解列表 2023年07月13日 0 点赞 0 评论 206 浏览 评分:0.0
比较数的大小 摘要:解题思路:注意事项:数据的范围参考代码:#include <stdio.h>int main(){ unsigned a; int b; scanf("%u %d",&a,&b); …… 题解列表 2023年07月13日 0 点赞 0 评论 178 浏览 评分:0.0
1018: [编程入门]有规律的数列求和(python) 摘要: n=int(input()) sum=0.0 a=1.0 b=1.0 k=0.0 for i in range(1,n+1): k=b b = a + b a …… 题解列表 2023年07月13日 0 点赞 0 评论 246 浏览 评分:0.0
画矩形行行 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,k; char c; c…… 题解列表 2023年07月13日 0 点赞 0 评论 130 浏览 评分:0.0