/*This program select the secret number for a */
/*corresponding message*/
#include<stdio.h>
main()
{
/*declaration of data types*/
int number1;
clrscr();
printf("This program will choose the selected number to ");
printf("sweetest word");
printf("\n Try to guess the number");
printf("\n Enter the number\n");
scanf("%d",&number1);
/*Condition*/
if (number1==143)
printf("I LOVE YOU..\n");
else
printf("Sorry.. try to guess another number.\n");
getche();
}
0 comments:
Post a Comment