画矩形(呃,(╹ڡ╹ )) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a,b; scanf("%d%d",&a,&b); getchar(); cha…… 题解列表 2023年10月07日 0 点赞 0 评论 237 浏览 评分:0.0
结构体之时间设计C语言 摘要:```c #define _CRT_SECURE_NO_WARNINGS 1 #include int main() { int a[12] = { 31,28,31,30,31,30,…… 题解列表 2023年10月07日 0 点赞 0 评论 268 浏览 评分:0.0
C语言思路简单,易懂!!! 理解万岁 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#define len sizeof (Stack)typedef struct s{ char data[300]; i…… 题解列表 2023年10月07日 0 点赞 0 评论 466 浏览 评分:0.0
收费(不能想多了,超过20之后,全部按新的收费) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { double a; scanf("%lf",&a); double sum=0; if(…… 题解列表 2023年10月07日 1 点赞 0 评论 335 浏览 评分:0.0
[编程入门]二维数组的转置 摘要:解题思路:先输入所需字符,然后交换。注意事项:效率不高,但易理解参考代码:#include<stdio.h>int main(){ int str[3][3] ; for (int i = 0; i …… 题解列表 2023年10月07日 0 点赞 0 评论 292 浏览 评分:0.0
数字整除java优化 摘要: /** * 问题描述: * 定理:把一个至少两位的正整数的个位数字去掉,再从余下的数中减去个位数的5倍。当且仅当差是17的倍数时,原数也是17的倍数 。 * …… 题解列表 2023年10月07日 0 点赞 0 评论 561 浏览 评分:0.0
1855: 输出字符'A'个数 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; cin>>n; …… 题解列表 2023年10月08日 0 点赞 0 评论 261 浏览 评分:0.0
1856: 最小三个数 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; int arr[100]…… 题解列表 2023年10月08日 0 点赞 0 评论 183 浏览 评分:0.0
1859: 与2无关的数 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<bits/stdc++.h> using namespace std; bool func(int i); …… 题解列表 2023年10月08日 0 点赞 0 评论 249 浏览 评分:0.0