题解列表

筛选

更相减损法 c++

摘要:解题思路:更相减损法注意事项:参考代码:#include <iostream>using namespace std;int main() { int a,b; cin>>a>>b; int m = ……

暴力出奇迹

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ struct date { int year; int mouth; int day; }a; scanf……

数组整数处理

摘要: #include void swap( int num[], int n1, int n2); int main(){ int num[10], min……

网线主管 向上取整

摘要:解题思路:先*100 方便计算 然后就是 向上取整 注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int m,n;int v[11005],……

模仿范例改的

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){    double a,b;    if(~scanf("%lf %lf", &a, &b))       i……

字符串连接C语言

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<string.h>int main(){ char a[100],b[100],c[200]; gets(a); g……