C语言程序设计现代方法第二版 8.3
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C语言程序设计现代方法第二版 8.3相关的知识,希望对你有一定的参考价值。
#define _CRT_SECURE_NO_WARNINGS#include <stdio.h>
#include <stdbool.h>
int main()
int digit;
long n;
while (true)
bool digit_seen[10] = false , flag = false;
printf("Enter a number: ");
scanf("%ld", &n);
int l=1;
if (n <= 0)
break;
while(n>0)
digit = n % 10;
if (digit_seen[digit])
l = 0;
digit_seen[digit] = true;
n /= 10;
if (l==0)
printf("Repeated digit\n");
else
printf("No Repeated digit\n");
return 0;
以上是关于C语言程序设计现代方法第二版 8.3的主要内容,如果未能解决你的问题,请参考以下文章
c语言程序设计:现代方法 第二版p44中有一段语句: i = 2; j = i*i++; 的问题。