题解列表

筛选

2899: 蛇形填充数组

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main {    public static void main(String[] args……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>struct book{    int id;    char name[26];};int mai……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){    char str[201];    gets(str);    str……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int sum_appro(int x){    int sum = 0,i;    for (i = 1; i <= x/2; i++……

1164: 数组的距离

摘要:```c++ #include int main() { int *p = nullptr; int *q = nullptr; int m, n; c……

感谢支持,谢谢你们的支持

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

感谢支持,谢谢你们的支持

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){       double a,b,c;    cin >>……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int n;    scanf("%x",&n);    printf("%d",n);    retur……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct student{ float score[7]; char name[50];};int main(){ struct s……