hdu4706】的更多相关文章

Problem Description Today is Children's Day. Some children ask you to output a big letter 'N'. 'N' is constituted by two vertical linesand one diagonal. Each pixel of this letter is a character orderly. No tail blank is allowed. For example, this is…
http://acm.hdu.edu.cn/showproblem.php?pid=4706 水题,也不知道有没有spj // <4706.cpp> - 11/03/16 14:11:21 // This file is made by YJinpeng,created by XuYike's black technology automatically. // Copyright (C) 2016 ChangJun High School, Inc. // I don't know what…
#include<string.h> #include<stdio.h> int main() { int a,b,c,d,i,j,n,m; ][]; ,j=; a<=; a++) { memset(an,' ',sizeof(an)); ; i<a; i++,j++) { an[i][]=; } ; d<=a-; d++,j++) { an[i-d-][d]=; } ; i<a; i++,j++) { an[i][a-]=; } ; n<a; n++…
hdu4706:http://acm.hdu.edu.cn/showproblem.php?pid=4706 题意:让你打出3--10的N,这个N是由连续的小写字母组成的. 题解:直接模拟啊,水题啊. #include <cstdio> #include <cstring> #include <algorithm> #include <iostream> using namespace std; int main(){ printf("a e\nb…