题解列表

筛选

循环控制,汽水瓶

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int test1(int n) {     return n / 3;}int test2(int n) {         retu……

自定义函数求一元二次方程

摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <math.h> #include <complex.h> // 计算并输出实数根的函数 void r……

题解 2814: 正常血压

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b,c,d=0,e=0,res=0; cin>>……

学习ASCII码(java)

摘要:参考代码:import java.util.Scanner;//用熟悉的printf输出字符常量 &#39; t &#39; 的ASCII以及ASCII码值63对应的字符!//注意,是两个结果,一个数……

鸡尾酒疗法

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>#include <complex.h> int main() {    int n, x, y[2……