码迷,mamicode.com
首页 >  
搜索关键字:include    ( 84546个结果
【codeforce】#682 T1
Specific Tastes of Andre 安德烈有非常特殊的口味。最近,他开始爱上数组。 如果Andre的元素之和可被该数组的长度整除,则称其为非空数组b。例如,数组[2,3,1]是好的,因为它的元素之和-6-可被3整除,但数组[1,1,2,3]则不好,因为7无法被7整除4。 如果满足以下条 ...
分类:其他好文   时间:2020-11-21 12:45:34    阅读次数:28
Codeforces Round #677 (Div. 3)
写在前面 最近开始刷CF,今天第一次补完完整的一套CF,总结一下吧,发现做过的题不赶紧总结写题解就容易忘了。 立个flag 争取每天更新一篇CF题解 A. Boring Apartments 模拟题,模拟就完了 #include<bits/stdc++.h> using namespace std; ...
分类:其他好文   时间:2020-11-21 12:44:54    阅读次数:33
ATM管理系统(极简版)
#一、说明 **1.**该系统只具备面向用户的基本功能(如开户、销户、存款、取款、转账、余额查询功能); **2.**该系统用C语言实现。 #二、ATM系统模块化代码 头文件& 全局变量 #include <stdio.h> #include <stdlib.h> #include <string. ...
分类:其他好文   时间:2020-11-21 12:43:16    阅读次数:45
实验三
任务一 #include<stdio.h> #include<math.h> int main(){ float a, b, c, x1, x2; float delta, real, imag; printf("Enter a, b, c: "); while(scanf("%f%f%f", &a ...
分类:其他好文   时间:2020-11-21 12:42:08    阅读次数:28
Codeforces Round #684 (Div. 2)【ABC1C2】
比赛链接:https://codeforces.com/contest/1440 A. Buy the String 题解 枚举字符串中 $0$ 或 $1$ 的个数即可。 代码 #include <bits/stdc++.h> using namespace std; int main() { io ...
分类:其他好文   时间:2020-11-21 12:41:54    阅读次数:32
C++内联函数
@(C++内联函数) #include <iostream> using namespace std; inline int Max(int a, int b) { if (a > b) return a; else return b; } int main() { cout << Max(23, ...
分类:编程语言   时间:2020-11-21 12:39:21    阅读次数:17
实验333333333333333333
#include<math.h> #include<stdio.h> int main(){ float a, b, c, x1, x2; float delta, real, imag; printf("Enter a, b, c: "); while(scanf("%f%f%f", &a, &b ...
分类:其他好文   时间:2020-11-21 12:32:15    阅读次数:7
实验3
#include <math.h> #include <stdio.h> int main() { float a, b, c, x1, x2; float delta, real, imag; printf("Enter a, b, c: "); while(scanf("%f%f%f", &a, ...
分类:其他好文   时间:2020-11-21 12:31:36    阅读次数:8
OS X 下安装 pycurl
1 (venv) ? pythonProject4 find / -iname ssl.h 2 find: /usr/sbin/authserver: Permission denied 3 /usr/local/Cellar/openssl@1.1/1.1.1g/include/openssl/s ...
分类:Web程序   时间:2020-11-21 12:30:25    阅读次数:16
P3899 [湖南集训]谈笑风生
###P3899 [湖南集训]谈笑风生 二维数点问题,主席树模板(两种写法 #include<bits/stdc++.h> #define IL inline #define LL long long #define pb push_back using namespace std; const i ...
分类:其他好文   时间:2020-11-21 12:15:18    阅读次数:7
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!