首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴随便看看C++
/*
2022年3月29日16点34分
程序作用:输出斐波那契数列的第n项
程序特点:使用了递归算法
*/

#include <iostream>
using namespace std;

int f(int n)
{
    int i;
......................
阅读全部 | StarLiver 贴于 2022年3月29日 16:34     hide bbsi
/*
2022年3月29日14点58分
程序作用:输出斐波那契数列的前n项
*/

#include <iostream>
using namespace std;

int main()
{
    int a1 = 1, a2 = 1;
    int n;
......................
阅读全部 | StarLiver 贴于 2022年3月29日 16:03     hide bbsi
/*
2022年3月29日14点58分
程序作用:输出九九乘法表
*/

#include <iostream>
using namespace std;

int main()
{
    for (int i = 1; i <= 9; i++)
    {
......................
阅读全部 | StarLiver 贴于 2022年3月29日 14:58     hide bbsi
/*
2022年3月29日14点26分
程序作用:输入三个整数x,y,z,把这三个数由小到大输出。
程序特点:使用了指针
*/

#include <iostream>
using namespace std;

void exchange(int * a, int * b)
{
    int t;
......................
阅读全部 | StarLiver 贴于 2022年3月29日 14:40     hide bbsi
/*
2022年3月29日14点26分
输入三个整数x,y,z,把这三个数由小到大输出。
*/

#include <iostream>
using namespace std;

int main()
{
    int x, y, z;
    cout << "请依次输入三个整数,用空格隔开" << endl;
......................
阅读全部 | StarLiver 贴于 2022年3月29日 14:27     hide bbsi
#include <iostream>

int main()
{
  

  return 0;
}
阅读全部 | nameIsNull 贴于 2022年3月19日 15:14     hide bbsi
#include<iostream>
using namespace std;
class student{
private:string name;
  int numble;
  int score;
  static int total;
  static float ave;
  static float sum;
public:student(string n,int num,int s);
  void output();
};
......................
阅读全部 | GGXQ 贴于 2021年12月16日 23:16     hide bbsi
/**
WASD移动
P放置木板
如果在水下移动会扣血
当LVEVL达到64时游戏通关
**/
#include <bits/stdc++.h>
#include <cstdlib>
#include <time.h>
#include <cmath>
#include <iostream>
#include <fstream>
......................
阅读全部 | ghost_no_eq 贴于 2021年12月9日 19:32     hide bbsi
#include <cstdio>

int main()
{
printf("Hello,world!");
}
阅读全部 | 宇宙核心飞船 贴于 2021年11月20日 12:07     hide bbsi
/**
 * 【程序8】
 * 题目:输入三个整数a,b,c,请把这三个数由小到大输出。
 * 程序分析:我们想办法把最小的数放到a上,先将a与b进行比较,如果a>b则将a与b的值进行交换;
 *       然后再用a与c进行比较,如果a>c则将a与c的值进行交换,这样能使a最小;最后再比较
 *           b和c的值。
 */

#include<stdio.h>

int main()
{
......................
阅读全部 | 编程小白00 贴于 2021年11月11日 10:47     hide bbsi
上一页 2 3 4 5 6 7 8 9 10 11 下一页