数组存储,循环相除(C++) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;int main(){ int arr[3] = { 0 …… 题解列表 2023年12月22日 0 点赞 0 评论 200 浏览 评分:0.0
利用循环解决(C++) 摘要:解题思路:注意事项:注意sum和Sn需要long long 类型,不然会超界参考代码:#include<iostream>using namespace std;int main(){ int …… 题解列表 2023年12月22日 0 点赞 0 评论 174 浏览 评分:0.0
题解 1671: 小九九 C语言 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>int main(){ for (int i = 1; i <= 9…… 题解列表 2023年12月22日 0 点赞 0 评论 139 浏览 评分:0.0
题解 1019: [编程入门]自由下落的距离计算 C语言解法 摘要:解题思路:注意事项:注意减去重复计算的高度,总高度要计算弹起高度参考代码:#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>int main(){ …… 题解列表 2023年12月22日 0 点赞 0 评论 162 浏览 评分:0.0
题解 1018: [编程入门]有规律的数列求和 C语言 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>int main(){ int n, temp; double…… 题解列表 2023年12月22日 0 点赞 0 评论 133 浏览 评分:0.0
题解 1016: [编程入门]水仙花数判断 C语言 摘要:解题思路:注意事项:主要考察位数分解参考代码:#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>int main(){ int num = 0, i…… 题解列表 2023年12月22日 0 点赞 0 评论 139 浏览 评分:0.0
递归函数法 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int b[5],i=0,mask2=1,n=0;int fun(int a ,int w){ if…… 题解列表 2023年12月21日 0 点赞 0 评论 161 浏览 评分:0.0
比较字符串(嘿嘿,这题嘛,其实可以输出strcmp的返回值的,返回值就是字典序差) 摘要:解题思路: 怎么说,是不是很方便 参考代码: ```c #include #include int main() { char s1[101],s2[101]; scanf("%…… 题解列表 2023年12月21日 0 点赞 0 评论 190 浏览 评分:0.0
题解 2759: 打印字符 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a; cin>>a; putchar(a); …… 题解列表 2023年12月21日 0 点赞 0 评论 222 浏览 评分:9.9
题解 2773: 计算线段长度 摘要:解题思路:注意事项:参考代码:#inalude <bitz/stdc+-.h>uerng namespace std;doqble xa,ya,xb,yb,c;int maie(){ cin>>…… 题解列表 2023年12月21日 0 点赞 0 评论 225 浏览 评分:9.9