C语言思路简单,易懂!!! 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main (){ double data,y1,y2; int a,b,c; …… 题解列表 2023年09月24日 0 点赞 0 评论 149 浏览 评分:0.0
C语言思路简单,易懂!!! 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main (){ char a[80]; gets(a); for (…… 题解列表 2023年09月24日 0 点赞 0 评论 152 浏览 评分:0.0
C语言思路简单,易懂!!! 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int f(int n){ double a,b; a=n/100; b=n%10…… 题解列表 2023年09月24日 0 点赞 0 评论 136 浏览 评分:0.0
1016: [编程入门]水仙花数判断 摘要:解题思路:分别求出三位数的水仙花数的百位数,十分位数,个位数后。分别对其进行三次方处理判断即可注意事项:参考代码:#include<stdio.h>#include<math.h>int main()…… 题解列表 2023年09月24日 0 点赞 0 评论 179 浏览 评分:0.0
1783: 星期判断机switch-case 和map容器两种方法解决 摘要:解题思路:注意事项:参考代码:switch-case方法#includeusing namespace std; int main() { int week; cin>>wee…… 题解列表 2023年09月25日 0 点赞 0 评论 174 浏览 评分:0.0
1784: 矩阵的对角线之和 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int arr[5][5]; int …… 题解列表 2023年09月25日 0 点赞 0 评论 136 浏览 评分:0.0
1785: 指针/引用练习之交换数字 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int swap(int &a,int &b); int main() { …… 题解列表 2023年09月25日 0 点赞 0 评论 214 浏览 评分:0.0
求长方形行面积问题,主要还是格式问题 摘要:注意事项: 1.输入的长和宽要在一行有空格隔开; 2.输出的周长和面积要是两行,且以C:和S:开头; 3.开头的C和S要是大写的,不然通不过…… 题解列表 2023年09月25日 0 点赞 0 评论 145 浏览 评分:0.0
查找最接近的元素二分 摘要:```cpp #include #include #include using namespace std; typedef long long LL; const int N =1000…… 题解列表 2023年09月25日 0 点赞 0 评论 236 浏览 评分:0.0