题解列表

筛选

1850: 判断第几天

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() {     string str;     in……

简单明了的解题法

摘要:解题思路:转置不就是吧(a,b)换成(b,a)么,我直接把循环嵌套输入的i,j倒过来不就实现了么注意事项:参考代码:#include<stdio.h>#include<math.h>int main(……

结构体之时间设计

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int judge(int n) {     if (n % 4 == 0 && ……

结构体之成绩记录

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main() { struct student { string Xue……

术式反转 赫

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>typedef struct _fushu{ int va……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>#define maxsize 100typedef struct{    double sco……

行程长度编码

摘要:参考代码: ```c #include #include #include int main() { char a[1000]; gets(a); int len=strlen……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct stu_node{    int data;    struct st……