鱼C论坛

 找回密码
 立即注册
查看: 1878|回复: 1

[技术交流] 自己写的 C++ 头文件

[复制链接]
发表于 2020-1-16 09:15:39 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 zltzlt 于 2020-1-16 09:43 编辑

utils.h
#include <iostream>
#include <string>

using namespace std;

const string sep = " ";
const string newl = "\n";
const string empty_str = "";

bool all(int *array, int length)
{
    int i;
    for (i = 0; i < length; i++)
    {
        if (!array[i])
            return false;
    }
    return true;
}

bool any(int *array, int length)
{
    int i;
    for (i = 0; i < length; i++)
    {
        if (array[i])
            return true;
    }
    return false;
}

void print(string val = empty_str, string end = newl)
{
    cout << val << end;
}

void print_num(double num = 0, string end = newl)
{
    cout << num << end;
}

string input(string prompt = empty_str)
{
    cout << prompt;
    string s;
    cin >> s;
    return s;
}

int int_input(string prompt = empty_str)
{
    cout << prompt;
    long long n;
    cin >> n;
    return n;
}

double float_input(string prompt = empty_str)
{
    cout << prompt;
    double n;
    cin >> n;
    return n;
}

int gcd(int x, int y)
{
    int z;
    while (y)
    {
        z = x % y;
        x = y;
        y = z;
    }
    return x;
}

test.cpp
#include <iostream>
#include <string>
#include "utils.h"

int main()
{
    print("Hi!", newl);
    print_num(3, sep);
    print_num(3.1415);
    print(input());
    print_num(int_input("Please input a number: "));
    print_num(float_input("Please input a decimal: "));
    print("The greatest common divisor of 18 and 24 is:", sep);
    print_num(gcd(18, 24));
    return 0;
}

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-1-16 11:37:35 | 显示全部楼层
顶一个。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-16 07:56

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表