Output 1 to 4 of these four digits can be composed of different and no duplicate number of three digits

Source: Internet
Author: User
Tags include printf

See the full set of "C language problem sets"

Question: There are 1, 2, 3, 4 digits, can be composed of a number of different and no duplicate number of three digits? How much are they?

1. Procedure analysis: Can fill in the hundred, 10 digits, single-digit digits are 1, 2, 3, 4. Make up all the permutations and then remove the arrangement that does not satisfy the condition.

2. Program Source code:

#include "stdio.h"
#include "conio.h"
Main ()
{
int i,j,k;
printf ("\ n");
for (i=1;i<5;i++)/* The following triple cycle * *
for (j=1;j<5;j++)
for (k=1;k<5;k++)
{
if (i!=k&&i!=j&&j!=k)/* Ensure that I, j, K three bits are different * *
printf ("%d,%d,%d\n", i,j,k);
}
Getch ();
}

3.Visual C + + 6.0 debugging pass, as shown in figure:

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.