C++ : 类和两种访问权限的练习
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std ;const int n=3 ;class MAX{&nb……
小白python系列-三个数最大值
摘要:解题思路:小白都能看懂系列=v=参考代码:a,b,c=map(int,input().split())if a>b: if a>c: &……
求输入三个数的最大值
摘要:解题思路:主要采用了与或非 的方法注意事项:适合我这种没计算机思维的初学者(>__<)参考代码:#include<stdio.h>int main(){  ……
C++:ctrl c ctrl v
摘要:解题思路:1注意事项:2参考代码:#include<iostream>using namespace std;int main(){ int a,b,c;&nbs……