C语言
玖熙浩
这个作者很懒,什么都没留下…
展开
-
Dev C++无法调试:调试直接崩
将下拉框位置的选项设置为第二项(64-bit Debug)原创 2021-03-21 21:23:19 · 402 阅读 · 2 评论 -
文本文件单词统计
#include <bits/stdc++.h> #define LIST_INIT_SIZE 100 //线性表存储空间的初始分配量 #define LISTINCREMENT 10 //线性表存储空间的分配增量 int n; typedef struct { char word[21]; //存储单词,不超过 20 个字符 int count; //单词出现的次数 } Ele...原创 2019-07-04 19:51:27 · 793 阅读 · 0 评论 -
分数的加减乘除
#include <iostream> #include <math.h> using namespace std; class Rational { private: int x,y; //成员变量 x 和 y,分别存放分子和分母 public: Rational(int a=1,int b=1); //具有默认参数的构造函数,默认值为 1 Rat...原创 2019-07-04 19:52:44 · 848 阅读 · 0 评论