`
lgh1992314
  • 浏览: 315576 次
文章分类
社区版块
存档分类
最新评论
文章列表
声明: 1.这份列表当然不是我原创的,从文库里下载了一份,放到这里便于自己浏览和查找题目。 ※最近更新:Poj斜率优化题目 1180,2018,3709
#include<stdio.h> typedef struct { char name[10]; int num; int age; }student; int main() { student stuin,stuout; FILE *fp; if((fp=fopen("d:\\dat.txt","w+"))==NULL) { printf("无法打开此文件!\n"); } scanf("%s %d %d",stuin.name,&stuin.num,&s ...
多读一些优秀的书籍,对于开发者稳固编程基础、提高编程技能有很大帮助。但是,大多时候,初学者不知道应该读什么书入门,有一定基础的开发者不知道如何进阶。 本文总结了一个 C++ 优秀书籍清单,希望能够为你带来 ...
The Triangle Time Limit:1000MS Memory Limit:10000K Total Submissions:30728 Accepted:18184 Description 7 3 8 8 1 0 2 7 4 4 4 5 2 6 5 (Figure 1) Figure 1 shows a number triangle. Write a program that calculates the highest sum of numbers passed on a ...
Function Run Fun Time Limit:1000MS Memory Limit:10000K Total Submissions:13471 Accepted:7014 Description We all love recursion! Don't we? Consider a three-parameter recursive function w(a, b, c): if a <= 0 or b <= 0 or c <= 0, then w(a, b, c) returns: 1 if a & ...
Seeding Time Limit:2 Seconds Memory Limit:65536 KB It is spring time and farmers have to plant seeds in the field. Tom has a nice field, which is a rectangle with n * m squares. There are big stones in some of the squares. Tom has a seeding-machine. At the beginning, the machine lies in the top ...
小学弟的一个问题,不错额 #include<stdio.h> void main() { char *ch1[5]; int i; char **p; p=ch1; for(i=0;i<5;i++) scanf("%s",p+i); for(i=0;i<5;i++) printf("%s",*(p+i)); } 指针没有分配空间 c: malloc #include<stdio.h> #include<stdlib.h> int main() { char *ch1[2]; int i; ...
//贝神杰作,仅作记录,以后学习 #define GDIPVER 0x0110 //定义高版本的GDI+(1.1) #include <tchar.h> #include <windows.h> #include <ObjIdl.h> #include <stdio.h> #include <GdiPlus.h> #pragma comment(lib,"GdiPlus.lib") using namespace Gdiplus; #include <dwmapi.h> #pragma comment ...
滑雪 Time Limit:1000MS Memory Limit:65536K Total Submissions:62080 Accepted:22676 Description Michael喜欢滑雪百这并不奇怪, 因为滑雪的确很刺激。可是为了获得速度,滑的区域必须向下倾斜,而且当你滑到坡底,你不得不再次走上坡或者等待升降机来载你。Michael想知道载一个区域中最长底滑坡。区域由一个二维数组给出。数组的每个数字代表点的高度。下面是一个例子 1 2 3 4 5 16 17 18 19 6 15 24 25 20 7 14 ...
Prime Ring Problem Time Limit: 4000/2000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 15175Accepted Submission(s): 6903 Problem Description A ring is compose of n circles as shown in diagram. Put natural number 1, 2, ..., n into each circle separately, and th ...
#include<stdio.h> #include<string.h> int main() { char p[] = "1234567890"; char *ppp = p; for(int i = 0; i < strlen(ppp); i++) { printf("%d", i); ppp++; } } 输出结果:01234 #include<stdio.h> #include<string.h> int main() { char p[ ...
对于const,编辑器仅仅做纸面上的检查,如#define。 const int x = 10; cout<<x<<endl; 实际上在编译阶段,已经替换为: cout<<10<<endl; (VS2010) 问题1:const变量&常量   例:为什么下面的例子在使用一个con ...
.dsw---- 这种类型的文件在VC中是级别最高的,称为Workspace文件 .dsp---- 在VC中,应用程序是以Project的形式存在的,Project文件的扩展名为.dsp,在Workspace文件中可以包含多个Project,由Workspace文件对它们进行统一的协调和管理,每个工 ...
连连看 Time Limit: 20000/10000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 10796Accepted Submission(s): 2869 Problem Description “连连看”相信很多人都玩过。没玩过也没关系,下面我给大家介绍一下游戏规则:在一个棋盘中,放了很多的棋子。如果某两个相同的棋子,可以通过一条线连起来(这条线不能经过其它棋子),而且线的转折次数不超过两次,那么这两个棋子就可以在棋盘上消去。不好意思,由于我以前没有玩过 ...
#include<cstdio> #include <iostream> using namespace std; int main() { int num[3][4] = {{1,2,3,4},{2,3,4,5},{3,4,5,6}}; int (*p)[4] = num; /*for(p=num;p!=num+3;p++) { for(int *q=*p;q!=*p+4;q++) cout<<*q<<" "; cout<<endl; }*/ for(p=num;p!=num+3;p++) ...
Global site tag (gtag.js) - Google Analytics