题解列表

筛选

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>void delete(char n[],int x){    int i;    for (i = x - 1; i < strlen……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int compare(void const* a,void const* b){    int n……

太难了我不想打代码[STL训练]{A} + {B}

摘要:解题思路:set容器可以排序、去重、所以用它太几把合适了,先这样,在那样,最后那样,然后他妈的发现错了注意事项:     注意进厂时机!!!参考代码:#includeusing namespace s……

C++字符串连接

摘要:# string ```c++ #include using namespace std; int main() { string a,b; while(cin>……

c语言代码解决问题

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

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int a[100][100] = { 0 }, i, j, n, m,sum=0;    scanf("……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>double f(int x){    double c;    if (x == 1)        c = 1.0;    else……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int n,i;    long int max = -1000000,a[100],sum=0;    ……