王道考研机试指南
FulChou
SYSUer
展开
-
有两个日期,求两个日期之间的天数
题目描述有两个日期,求两个日期之间的天数,如果两个日期是连续的我们规定他们之间的天数为两天输入描述:有多组数据,每组数据有两行,分别表示两个日期,形式为YYYYMMDD输出描述:每组数据输出一行,即日期差值示例1输入2011041220110422输出11代码#include <iostream>#include <cstdio>#include <string>#include <math.h>using namespac原创 2020-06-08 22:41:55 · 891 阅读 · 0 评论 -
设计一个程序能计算一个日期加上若干天后是什么日期。
题目描述题目链接设计一个程序能计算一个日期加上若干天后是什么日期。输入描述:输入第一行表示样例个数m,接下来m行每行四个整数分别表示年月日和累加的天数。输出描述:输出m行,每行按yyyy-mm-dd的个数输出。示例1输入12008 2 3 100输出2008-05-13#include <iostream>#include <cstdio>using namespace std;int datas[2][12]={{31,28,31,30,31,30,原创 2020-06-08 22:37:27 · 536 阅读 · 0 评论 -
字符串构造U
Given any string of N (>=5) characters, you are asked to form the characters into the shape of U. For example, “helloworld” can be printed as: h d e l l r lowo That is, the characters must be printed in the original order, starting top-down from the原创 2020-06-01 20:25:35 · 216 阅读 · 0 评论 -
模版生成图片第七题
Harmony is indispensible in our daily life and no one can live without it----may be Facer is the only exception. One day it is rumored that repeat painting will create harmony and then hundreds of people started their endless drawing. Their paintings were原创 2020-06-01 19:19:01 · 337 阅读 · 0 评论 -
Old Bill(上海交通大学复试上机题)以及此题解决时,学到了一些知识。
题目描述Among grandfather’s papers a bill was found. 72 turkeys $679 The first and the last digits of the number that obviously represented the total price of those turkeys are replaced here by b...原创 2020-04-22 16:57:53 · 507 阅读 · 0 评论 -
王道考研机式指南03
题目描述打印所有不超过256,其平方具有对称性质的数。如2,11就是这样的数,因为22=4,1111=121。输入描述:无任何输入数据输出描述:输出具有题目要求的性质的数。如果输出数据不止一组,各组数据之间以回车隔开。#include <iostream>#include <cstdio>using namespace std;// 得到相反的数in...原创 2020-04-20 17:30:37 · 145 阅读 · 0 评论 -
王道考研机式指南02
题目描述设N是一个四位数,它的9倍恰好是其反序数(例如:1234的反序数是4321)求N的值输入描述:程序无任何输入数据。输出描述:输出题目要求的四位数,如果结果有多组,则每组结果之间以回车隔开。#include <iostream>#include "stdio.h"using namespace std;// 依旧是采用暴力:int main(){ ...原创 2020-04-20 17:29:33 · 117 阅读 · 0 评论 -
王道考研机式指南01
#include <iostream>#include "stdio.h"using namespace std;// 暴力破解第一题:int main(){ for(int a=0;a<=9;a++) for(int b=0;b<=9;b++) for(int c=0;c<=9;c++){ ...原创 2020-04-20 17:24:08 · 116 阅读 · 0 评论 -
王道考研机试04
测试链接题目描述一个正整数,如果它能被7整除,或者它的十进制表示法中某个位数上的数字为7, 则称其为与7相关的数.现求所有小于等于n(n<100)的与7无关的正整数的平方和。输入描述:案例可能有多组。对于每个测试案例输入为一行,正整数n,(n<100)输出描述:对于每个测试案例输出一行,输出小于等于n的与7无关的正整数的平方和。#include <iostream...原创 2020-04-20 18:07:41 · 153 阅读 · 0 评论