自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 资源 (1)
  • 收藏
  • 关注

原创 UVA 代码说明

本类别中的源代码均是已经经过

2014-04-13 10:31:34 1225

原创 UVA OJ:445 - Marvelous Mazes

#include#include#include#define maxn 100int main(){    char a;    int i,count=0;    while((a=getchar())!=EOF)    {        if(a==10)        printf("\n");        if(isdigit(a)) c

2014-04-15 15:03:59 407

原创 UVA OJ:494 - Kindergarten Counting Game

#include#include#include#define maxn 1000000int main(){    char str[maxn];    int i,count;    while(fgets(str,maxn,stdin)!=NULL)    {        count=1;        for(i=0;i        {

2014-04-15 15:00:45 413

原创 UVA OJ:458 - The Decoder

#include#define maxn 100000int main(){    char str[maxn];    int i;    while(gets(str)!=NULL)    {        for(i=0;i        {            str[i]-=7;        }        puts(

2014-04-15 14:59:44 395

原创 UVA OJ: 10300 - Ecological Premium

#includeint main(){    int n,mon;    int a,b,c;    int t;    scanf("%d",&n);    while(n--)    {        mon=0;        scanf("%d",&t);        while(t--)        {            sca

2014-04-15 14:57:14 420

原创 UVA OJ: 10071 - Back to High School Physics

#includeint main(){    int v,t;    while(scanf("%d%d",&v,&t)!=EOF)    {        printf("%d\n",2*v*t);    }    return 0;}这一题主要是要

2014-04-15 14:54:16 307

原创 UVA OJ: 10055 - Hashmat the Brave Warrior

#include#includeint main(){    long long a,b;    while(scanf("%lld%lld",&a,&b)!=EOF)    {        printf("%lld\n",a>b?a-b:b-a);    }    return 0;}

2014-04-13 10:48:35 328

原创 UVA OJ: 414 - Machined Surfaces

414 - Machined Surfaces

2014-04-13 10:26:57 341

汇编工具masm.exe link.exe cref.exe debug.exe edit.exe

供初学汇编的同学使用 内含运行汇编程序所必要的各种可执行程序文件

2015-03-14

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除