题解列表
(【C++】数组)数字的处理与判断——一种思路
摘要:**以下是我的代码**
```cpp
#include
using namespace std;
int main()
{
int num,wei;
cin>>num;
if(n……
2783: 判断是否为两位数
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); if(a>=10&&a<=99){ ……
保留字母(使用cctype头文件)
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cctype>#include<string>using namespace std;int main(){ ……
线性表的有序合并之【直接在head1的后面接上head2】(与我的第一篇文章雷同)
摘要: #include
#include
struct linklist
{
int data;
struct linklist……
1015: [编程入门]求和训练
摘要:解题思路:用递归写 怎么样注意事项:参考代码:#include<stdio.h>int main(){ float a,b,c; scanf("%f %f %f",&a,&b,&c); float f……