计算浮点数相除的余数 摘要:解题思路:按要求做答注意事项:参考代码:#include<stdio.h>#define PI 3.14159void main(){ //计算两个双精度浮点数a和b的相除的余数,a和b都是正数的。 …… 题解列表 2023年11月13日 0 点赞 0 评论 810 浏览 评分:9.3
简单的圆的计算 摘要:解题思路:注意事项:需要熟悉圆的各类计算部分参考代码:#include<stdio.h>#define PI 3.14159void main(){ double r,n,S,d,C; scanf("…… 题解列表 2023年11月13日 0 点赞 0 评论 609 浏览 评分:9.9
2782: 整数大小比较 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y; scanf("%d %d", &x, &y); if(x>y) pri…… 题解列表 2023年11月12日 0 点赞 0 评论 292 浏览 评分:0.0
矩阵对角线求和 摘要: x1,x2,x3 = map(int,input().split()) x4,x5,x6 = map(int,input().split()) x7,x8,x9 = map(int,inp…… 题解列表 2023年11月12日 0 点赞 0 评论 598 浏览 评分:6.0
蛇形矩阵,找规律输出 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); int temp=…… 题解列表 2023年11月12日 0 点赞 0 评论 333 浏览 评分:0.0
[编程入门]有规律的数列求和 (C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int N,d,i,e; double sum,a,b,c; a=2; b=1; …… 题解列表 2023年11月12日 0 点赞 0 评论 249 浏览 评分:0.0
[编程入门]完数的判断 (C语言) 摘要:解题思路:在b<a的循环中,将所有被a%b=0的b累加,得到sum,如果sum=a,则证明a为完数。把a输出。然后用b=c,将b重新赋值为1,将b<a,然后a%b=0的步骤重新来一遍,把所有的b的值输…… 题解列表 2023年11月12日 0 点赞 0 评论 372 浏览 评分:0.0
题解 3012: 分苹果 摘要: #include using namespace std; int main(){ int a,b=1,c=0; cin>>a; f…… 题解列表 2023年11月12日 0 点赞 0 评论 224 浏览 评分:0.0
不高兴的津津(C语言)(有注释)(简单易懂) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <math.h> int main() { int a[7][2]; // 存储每天的上课时间和…… 题解列表 2023年11月12日 0 点赞 0 评论 628 浏览 评分:9.9
2820: 含k个3的数 摘要:#含K个三的数 ##正常解法 很正常,直接用while循环和if语句就行了; ``` #include using namespace std; int main() { i…… 题解列表 2023年11月12日 0 点赞 0 评论 298 浏览 评分:9.9