题解列表
三个数最大值1002题解(c++)
摘要:#include
using namespace std;
int main() {
int a;
int b;
int c;
cin>>a>>b>>c;
if (a>b>c)……
递归_c++思路简单
摘要:解题思路:很简单自己看能懂注意事项:参考代码:#include<iostream>using namespace std;char arr[50][50];void Display(int size,……
1023: [编程入门]选择排序 冒泡排序
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10],i,j,temp; for(i=0; i<10; i++){ sc……
求最大公约数最小公倍数
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,m,n,i,j; scanf("%d %d",&a,&b); m=a<b?b:……
最大公约数与最小公倍数
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b; scanf("%d %d",&a,&b); int m =(a<b?a:b); while ……
编程入门自由下落的距离计算
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j,N; float M,H=0,S=0; scanf("%f %d",&M,&N……