题解列表
两种方法实现成绩记录
摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<string.h>struct student { c……
[编程入门]密码破译
摘要:解题思路:自己看注意事项:参考代码:#include <stdio.h>void encryptPassword(char* str) { int i = 0; while (str[i]……
求大于1小于1000的阿姆斯特朗数
摘要:解题思路:拆解数字各个位上的数字,并求出立方和注意事项:无参考代码:#include <stdio.h>#include <math.h>int main() { for (int i = 1;……
2543: 简单计算机器实现
摘要:解题思路:注意事项:参考代码:#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
int a……
鸡尾酒疗法题解-浮点数运算
摘要:#### 参考代码
```
#include
int main() {
int n;
double x, y;
scanf("%d%lf%lf", &n, &x, &y);
……