Sie sind auf Seite 1von 1

#include<stdio.

h>
int main()
{
int input=0;
printf("enter the +ve number to continue");
scanf("%d",&input);
while(input>0)
{
//printf("enter the +ve number to continue:");//
printf("enter the next number %d\n",input);
scanf("%d",&input);
/*if(input<0)
{break;}
else
{
printf("%d\n",input);
}*/
}
}

Das könnte Ihnen auch gefallen