Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I dont understand why they are not accepting this as the solution,They are saying its a wrong answer:-

#include <stdio.h>
int main(void) 
{
    int val=0;
    printf("Input:- 
");

    do {
        scanf("%d",&val);
        printf("%d 
",val);
    }
    while(val < 42);

    return 0;
}
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
720 views
Welcome To Ask or Share your Answers For Others

1 Answer

Two mistakes:

  1. Remove this line- printf("Input:- ");
  2. In question you have to print before coming 42. If 42 has come you have to break.

Like this:

if(n!=42) 
   printf("%d
",n); 
else 
   break;

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...