题解列表

筛选

小学生的c++题解

摘要:解题思路:无注意事项:无参考代码#include<iostream>using namespace std;int main(){ char a; int b; float c; double d; ……

xxs写的题解

摘要:解题思路:无注意事项:无参考代码:#include<iostream>using namespace std;int main(){  float a;  cin>>a;  printf("%.3f"……

小学生的c++题解

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

c++实现阶乘求和

摘要:解题思路:注意事项:参考代码:#include#includeusing namespace std;long long face(int n){    long long  f=1;    if(n……