题解列表

筛选

[编程入门]结构体之成绩统计2

摘要:解题思路:注意事项:参考代码:#include <stdio.h>struct student {    int num;          // 学号    char name[10];    //……

循环入门练习2

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>#include <string.h>int main(){ int i, e=0; for (i ……

每一行都有解析的c++代码。

摘要:参考代码:#include <bits/stdc++.h>//c++万能头文件using namespace std;//可以不写,不写的话,在用的地方前加std::int main() {//主函数……

二维数组右上左下遍历...

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

编写题解 1099: 校门外的树C++

摘要:```cpp #include /* 文件头可以随便,我喜欢万能头,这里也可以(注意有memset函数,要用cstring库): #include #include */ using ……