题解列表

筛选

甲流病人初筛(c++)

摘要:解题思路:注意事项:参考代码:#include <iostream>#include <vector>using namespace std;struct Patient {    string na……

1769: 循环入门练习6

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

1768: 循环入门练习5

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

1767: 循环入门练习4

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() {     int sum=0;     int……

1766: 循环入门练习3

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() {     int sum=0;     int……

1765: 循环入门练习2

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() {     int sum=0;     for……

1764: 循环入门练习1

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() {     int sum=0;     for……

1670: 拆分位数

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int main() {     int num;     cin>……

题解 3003: 鸡兔同笼问题

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

题解 2751: 超级玛丽游戏

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