题解列表

筛选

2867: 单词的长度

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

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;   ……

三个字符串的排序

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

1669: 求圆的面积

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

2774: 计算三角形面积

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