题解列表
秒懂的python代码
摘要:解题思路:理解什么是回文数 注意事项:如何正确处理列表的切片是重点参考代码:ls1=[str(i) for i in input()]if ls1==ls1[::-1]:    print("Y")e…… 
编写题解 2780: 奇偶数判断(C语言)
摘要:解题思路:     n为偶数,即 n除以2余数为零(即 n%2==0);n为奇数,即n除以2余数不为零。注意事项: n%2==0(是“==”不是“=”)!!!!    “=”是赋值;“==”才是等于参…… 
C语言--study||O.o
摘要:参考代码:#include<stdio.h>
 
int arr[3][3];
int main()
{   
    for(int i = 0; i < 3; i++)
       …… 
C语言--study||O.o
摘要:参考代码:#include<stdio.h>
 
int arr[100];
int is(int, int *);
int main()
{   
    int n;
    sca…… 
C语言--study||O.o
摘要:参考代码:#include<stdio.h>
int main()
{
    printf("**************************\n\
Hello World!\n\
*…… 
C语言--study||O.o
摘要:参考代码:include<stdio.h>
 
struct student
{   char number[20];
    char name[10];
    int subject1…… 
C语言--study||O.o
摘要:参考代码:#include<stdio.h>
 
struct student
{   char number[10];
    char name[10];
    int s1;
  …… 
[C++]题解 1981: 输出M到N的数
摘要:# 题解 1981: 输出M到N的数
### 代码与思路如下
```cpp
#include
using namespace std;
int main()
{
int m,n,…… 
