当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

3583:CodeMaker

题目描述
Dreamwind is doing C++ homework……
“Write a program, enter 3 different integers a,b,c, output them in increasing order using their variable names.”
This is Dreamwind’s answer:
#include <stdio.h>

int a,b,c;
bool ok;

int main()
{
    printf("Please enter 3 different integers:\n");
    do
    {
      scanf("%d%d%d",&a,&b,&c);
      ok=1;
      if (a==b || a==c || b==c)
        ok=0;
    }while (ok);
    if (a<b)
      if (b<c)
        printf("a<b<c\n");
      else
        if (a<c)
          printf("a<c<b\n");
        else
          printf("c<a<b\n");
    else
      if (a<c)
        printf("b<a<c\n");
      else
        if (b<c)
          printf("b<c<a\n");
        else
          printf("c<b<a\n");
    return 0;
}
Obviously, this program is very complex, but Dreamwind is satisfied with this. He prepares to solve similar question by using the same format. However, when the nubmer of integers if very large, the length of code by this format will be very long, so Dreamwind gives this code to you, hoping you can write a program which can create the code of some questions like “Enter n different integers a,b,c,…, output them in increasing order using their variable names.” automatically.
We can see that in Dreamwind’s format, the integers’ variable name will be a,b,c,…, and when judge whether the integers are different, the “if” will follow many sentence like (a==b) in some order. When compare the integers, he uses the least “if” so that every “if” and “else” is perfectly used. For each comparison, a and b will always be used first, and then c, and then d (if n is larger, see the Sample Output). Dreamwind never use “>” in this program, and in every “<” and “==” in the “if” sentence, the varible name on the left will always smaller than the one on the right.
输入解释
There are some test cases. For each test case there is only one line with a integer n (2<=n<=8), the number of integers. There is one 0 in the end of the case.
输出解释
For each n, output the code with Dreamwind’s format. Notice that you should use one or more Tabs (‘\t’) to intent in some lines. Leave a blank line after each output.
输入样例
4
0
输出样例
#include 

int a,b,c,d;
bool ok;

int main()
{
	printf("Please enter 4 different integers:\n");
	do
	{
		scanf("%d%d%d%d",&a,&b,&c,&d);
		ok=1;
		if (a==b || a==c || a==d || b==c || b==d || c==d)
			ok=0;
	}while (ok);
	if (a
                                
来自杭电HDUOJ的附加信息
Author alpc32
Recommend zhouzeyong

该题目是Virtual Judge题目,来自 杭电HDUOJ

源链接: HDU-3583

最后修改于 2020-10-25T23:04:59+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
2000/1000MS(Java/Others) 131072/65536K(Java/Others)