题解列表

筛选

2764: 带余除法

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

三位数分解(题解)

摘要:解题思路:输入一个三位整数,分三行分别输出这个三位数的百位、十位、个位数。输入格式注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int m……

三位数分解

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

递归_c++思路简单

摘要:解题思路:很简单自己看能懂注意事项:参考代码:#include<iostream>using namespace std;char arr[50][50];void Display(int size,……

原题链接:Hello, World!

摘要:解题思路:1、输出参考代码:#include<iostream>using namespace std;int main (){cout<<"Hello, World!"<<endl;return 0……

暴力,朴实无华

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int n;bool o;int y = 0;bool sf(int x, int w){ i……

我不理解我也不到

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