题解列表

筛选

星期判断机(C++switch)

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() {     int n;     cin>>n;    ……

  编写题解 2919: 奖学金

摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct student {    int id;    int yu;    int shu;    int Eng;};int ……

矩阵的对角线之和(简单C++)

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() {     int a[5][5],i,s=0,j;   ……