码迷,mamicode.com
首页 >  
搜索关键字:scanf    ( 10388个结果
c语言中fgetc函数:显示文件内容
1、显示a.txt文件的内容 #include <stdio.h> int main(void) { FILE *fp; int ch; char filename[FILENAME_MAX]; printf("Please input the filename: "); scanf("%s", f ...
分类:编程语言   时间:2021-06-11 18:30:11    阅读次数:0
P4307 [JSOI2009]球队收益 / 球队预算
【题意】 【分析】 这道题目可以说集结了蛮多套路 首先就是平方拆边,平方拆边指的是当贡献是平方这种形式的时候,我们可以增量构造边,保证每次走的边递增 比如$(a+1)^2-a^2=2a+1$,那么我们建的边就是a,3a,5a.....,这样既保证了从小到大依次走,也保证了平方的形式 第二个套路就是费 ...
分类:Web程序   时间:2021-06-07 20:40:08    阅读次数:0
c语言 13-1
1、 #include <stdio.h> int main(void) { FILE *fp; // 打开文件前,必须定义FILE*型指针变量。 char file[128]; printf("please input the filename: "); scanf("%s", file); // ...
分类:编程语言   时间:2021-06-07 20:01:39    阅读次数:0
c语言中用结构体表示点的坐标,并计算两点之间的距离
c语言中用结构体表示点的坐标,并计算两点之间的距离 1、 #include <stdio.h> #include <math.h> #define sqr(x) ((x) * (x)) typedef struct{ double x; double y; }Point; double dist(P ...
分类:编程语言   时间:2021-06-06 18:46:18    阅读次数:0
计算(变量)
#include <stdio.h> int main() { int price = 0; printf ("请输入金额(元)"); scanf ("%d",&price); int change = 100 - price; printf ("找您%d元\n",change); return 0 ...
分类:其他好文   时间:2021-06-02 20:47:52    阅读次数:0
UVA 10795 A Different Task (递归)
https://onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&category=0&problem=1736&mosmsg=Submission+received+with+ID+2645038 ...
分类:其他好文   时间:2021-06-02 20:34:45    阅读次数:0
Solution -「UR #21」「UOJ #632」挑战最大团
$\mathcal Link. 对于简单无向图 \(G=(V,E)\),定义它是“优美”的,当且仅当 \[ \forall\{a,b,c,d\}\sube V,((a,b),(b,c),(c,d)\in E)\Rightarrow(a,c)\in E\lor(b,d)\in E\lor(a,d)\i ...
分类:其他好文   时间:2021-06-02 17:36:30    阅读次数:0
POJ 2311 Cutting Game 题解
前置芝士 Cutting Game 给定一张 \(N\times M\) 的矩形网格纸,两名玩家轮流行动。 在每一次行动中,可以任选一张矩形网格纸,沿着某一行或某一列的格线,把它剪成两部分。 首先剪出 \(1\times 1\) 的格纸的玩家获胜。 两名玩家都采取最优策略行动,求先手是否能获胜。 \ ...
分类:其他好文   时间:2021-06-02 15:34:31    阅读次数:0
斐波拉契序列
/* 斐波拉契序列 1 1 2 3 5 8 13 .。 。。。。。 除了1,2之外,每一项是前两项的和*/#include<stdio.h>//在vc2010中是以c的后缀来用c语言文件的void main(void)//int main(void) 注意不返回任何值的话要在main的括号里面加入v ...
分类:其他好文   时间:2021-06-02 15:22:43    阅读次数:0
实验五
#include <stdio.h> const int N=3; int main() { int a[N] = {1, 2, 3}; int i; printf("通过数组名和下标直接访问数组元素:\n"); for(i=0; i<N; i++) printf("%d: %d\n", &a[i] ...
分类:其他好文   时间:2021-06-02 13:43:42    阅读次数:0
10388条   上一页 1 2 3 4 ... 1039 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!