题解列表

筛选

年会 (C++代码)

摘要:        Dp苦手( 。参考代码:#ifndef LOCAL     #include <bits/stdc++.h> #endif constexpr auto Inf = 0X3F3F……

姜太公钓鱼 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,num=0; scanf("%d",&n); int s[n],i; for(i=0;i<n;i++……

ASCII码和toupper函数的结合

摘要:解题思路:用strlen求出本次输入的数组长度再根据ASCII码对应的小写字母范围用toupper函数调整注意事项:函数原型:extern int toupper(int c);在ctype.h文件中……