查询到最新的12条

VS Code C/C++环境配置教程(无法打开源文件“xxxxxx.h”或者检测到 #include 错误,

一、问题描述与分析 编辑c/c++程序,我推荐使用c/c++,vs code相对于别的编译器来说有很多的优势。但是如果第一次使用的话,会觉得其不好用。因为如果不配置好的话,操作会比较麻烦。 注意:我这里是在windows下编写linux程序。 例如在使用vs code编辑c/c++程序在没有配置好的情况下,会出现如下图情况, 出现这种情况的原因是 在vs code没有找到头文件。或者是vs code没有配置好。 为了很好的解 继续阅读

高斯消元 卡我常数(shit)

洛谷P7112 行列式求值 要是第32行的if去掉,那就喜提TLE。。。 这题限制不应该开到5秒吗,非要卡这个常数2,时间就变成两倍,直接T飞。。。害我以为做法错了,调了这么久 #include <bits/stdc++.h> using namespace std; #define int long long const int N = 600 + 5, mod = 10 继续阅读

C语言实现阶乘的相加

上一篇,我总结了如何使用c语言实现阶乘的计算,这里算是对以上的补充:将阶乘累加。 即1!+2!+3!+...+10! 好废话不多说,直接上代码: #include<stdio.h> int main() {int i, n;double sum = 1;double ret = 0;for (n = 1; n 继续阅读

C语言求阶乘

现在我们来求一下5的阶乘 我们只需要设置一个循环,,在设置一个变量为1,从1开始与变量相乘,相乘的结果再存入变量,将上面的步骤循环五次即可。 代码如下 #include<stdio.h> int main() {int i = 0;int sum = 1;for (i = 1; i <= 5; i++){sum = sum * i;}print 继续阅读

C语言中的阶乘

1、阶乘的使用 在c语言中,一些数学中的公式也可以用代码的形式去表达,以便于更好的去使用。 下面,我将用简单介绍阶乘是如何使用代码的形式去使用的 比如, #include <stdio.h> int main() { int a = 0; int ret = 1; int n = 0; scanf("%d", &n); for(a =1;a <= n; 继续阅读

Wannafly 22A

题解 另g = gcd(a1,a2,a3....) 那么k * g % m的方案书就是答案 这个式子子显然是有循环节的 x * g = 0 mod m ,x * g + y * m = 0 exgcd 后 x = x0 + k * (m/gcd(g,m)) 也是就m/gcd(g,m) 代码 #include<map> #include<cstdio> #include<algorithm> 继续阅读

TensorFlow错误:fatal error: tensorflow/core/framework/op.

跑了PointCNN,基于TensorFlow,遇到了错误,编译的时候找不到头文件。 我是Virtualenv方式安装的Tensorflow,但是编译文件tf_sampling_compile.sh里面的路径是这么写的: TF_PATH=/usr/local/lib/python$PYTHON_VERSION/dist-packages/tensorflow/include 但是我的TensorFlow没有装在usr下 继续阅读

FD小工具代码-hex2bin

为了某件事写了个小工具,顺手扔进FD工具箱中。 /* 输入十六进制,输出二进制 */#include <ctype.h> #include <stdio.h>#define H0 "0000 " #define H1 "0001 " #define H2 "0010 " #define H3 "0011 " #define H4 "0100 " #defin 继续阅读

Qt实现Windows服务程序

Qt 编写 Windows 服务程序 大体步骤就是: 1、下载qtservice源码; 2、在自己的工程中引入qtservice源码; include(./windowservice/qtservice.pri) 3、编写自己的 service 类,并继承自 QtService。 #include "qtservice.h"class MyService: public QtService<QCoreApplica 继续阅读