题解列表

筛选

题解 1764循环入门练习1

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

2000: 偶数列举

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

2000: 偶数列举

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

题解 2000 偶数列举

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

偶数列举 2000:

摘要:解题思路:#include <iostream>using namespace std;int main(){    int n;    cin>>n;    for(int i=1;  i<n;i+……

111111111111111111111111111111111111

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

循环入门练习1 1764

摘要:解题思路:#include <iostream>using namespace std;int main(){    int sum =0;    for(int i=1;  i<=1000;i++)……

题解 2000: 偶数列举

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

1764: 循环入门练习1

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

面向结果编程

摘要: #include using namespace std; typedef struct fff { int num; int……