题解列表

筛选

1669: 求圆的面积

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>//要用万能头!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!using namesp……

三个字符串的排序

摘要:解题思路:注意事项:参考代码:#include <iostream>#include<cstdio>#include<cstring>using namespace std;//自定义函数,实现比较a……

C语言--study||O.o

摘要:参考代码:#include<stdio.h>   struct student {   char number[10];     char name[10];     int s1;   ……

C语言--study||O.o

摘要:参考代码:include<stdio.h>   struct student {   char number[20];     char name[10];     int subject1……

C语言--study||O.o

摘要:参考代码:#include<stdio.h> int main() {     printf("**************************\n\ Hello World!\n\ *……

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 arr[3][3]; int main() {        for(int i = 0; i < 3; i++)        ……

2867: 单词的长度

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

完数的判断(c语言)清晰版

摘要:题目描述:一个数如果恰好等于不包含它本身所有因子之和,这个数就称为"完数"。 例如,6的因子为1、2、3,而6=1+2+3,因此6是"完数"。 编程序找出N之内的所有完数,并按下面格式输出其因子。输入……