2792: 三角形判断 摘要:```cpp #include using namespace std; int main() { int a,b,c; cin>>a>>b>>c; if(a+b…… 题解列表 2023年01月12日 0 点赞 0 评论 643 浏览 评分:9.9
1269: 谁拿了最多奖学金 摘要:```cpp #include #include #include using namespace std; struct Stu { string name; int…… 题解列表 2023年01月12日 0 点赞 0 评论 630 浏览 评分:9.9
2919: 奖学金 摘要:```cpp #include #include using namespace std; struct student { int id,Chinese,score; }stu…… 题解列表 2023年01月12日 0 点赞 0 评论 418 浏览 评分:9.9
2118: 信息学奥赛一本通T1179-奖学金 摘要:```cpp #include using namespace std; typedef struct student { int num,c_score,m_score,e_sc…… 题解列表 2023年01月12日 0 点赞 0 评论 578 浏览 评分:9.9
A+B for Input-Output Practice (V)(水题) 摘要:```c #include int main(){ int n,m,i,j,a[1000],sum=0; scanf("%d",&n); for(i=0;i…… 题解列表 2023年01月12日 0 点赞 0 评论 675 浏览 评分:9.9
The 3n + 1 problem(水题) 摘要:```c #include int fun(int n){ int cnt=0; do{ if(n%2==0){ n/=2; cnt++; } else…… 题解列表 2023年01月12日 0 点赞 0 评论 405 浏览 评分:9.9
1074基础解法(Python) 摘要:注意事项:sys.stdin会读取到'\n'换行符参考代码:import sysfor line in sys.stdin : if int(line) == 0 : …… 题解列表 2023年01月12日 0 点赞 0 评论 484 浏览 评分:9.9
快速排序python解法 摘要:参考代码:def quick_sort(q, l, r): if l>=r: return i, j = l-1, r+1 x = q[(l+r)//2] while i < j: …… 题解列表 2023年01月12日 0 点赞 0 评论 439 浏览 评分:9.9
2910: 找最大数序列 摘要:```cpp #include using namespace std; int main() { int n,i,x,a[31],mark=0,max=-1; bool …… 题解列表 2023年01月12日 0 点赞 0 评论 459 浏览 评分:9.9
蛇行矩阵(水题) 摘要:```c #include int main(){ int n,i,j,k=1,l,h=2; scanf("%d",&n); for(i=0;i…… 题解列表 2023年01月12日 0 点赞 0 评论 469 浏览 评分:9.9