Skip to main content

Toss game program in C language

CODE FOR TOSS GAME 


#include<stdio.h>
#include<time.h>
#include<stdlib.h>  // its a standard library header file
main()
{
int number,guess;
srand(time(NULL)); // this is the function to generate a random number between 0 and 1..
number=rand()%2;  // this is the actual operation for 1 and 0..
// if no. is even it gives 0 and 1 otherwise..
printf("\n \t ENTER 1 FOR TAIL AND 0 FOR HEAD : ");
scanf("%d",&guess);
printf(" \n THE RESULT OF THE TOSS IS :  ");
// testing the condition for head or tail...
if(number==0)
printf(" head  \n !!!");
else
printf("tail \n");
printf(" You guessed ");
if(guess==0)
printf("Head\n");
else
printf("Tail \n");
if(number ==guess)
printf(" hurray ! you won the toss !!!");
else
printf(" bad luck !!\n Better luck next time : : ");
}

Comments

Popular posts from this blog

Python Turtle : Create a attractive Petal Design

 Python Turtle Attractive Petal design in Python  import turtle # create the turtle object trt = turtle.Turtle() # create the screen object scr = turtle.Screen() #increase the pensize trt.pensize( 3 ) # set the background color to black scr.bgcolor( 'black' ) # set the pencolor to white colors = [ 'red' , 'orange' , 'yellow' , 'skyblue' , 'blue' , 'indigo' , 'violet' ] # increase the speed trt.speed( 0 ) # now first create a single petal # lets define the distance dis = 50 trt.color( "yellow" ) for color in range ( 20 ): for j in range ( 1 , 8 ): trt.left( 50 ) for i in range ( 2 ): trt.forward(dis) trt.left( 60 ) #rotate at 60 degree in clockwise trt.forward(dis) trt.left( 120 ) #rotate at 120 degree in clockwise dis = dis + 5 #hide the turtle after the shape has been drawn trt.hideturtle() turtle.done() Output : Learn thr...

Python Turtle tutorials : Create a Bi-Pyramid structure

 Python Turtle Tutorials  Create a Bi-Pyramid structure using Python  Code :           """ Program to create a Bi-pyramid structure Source : CODE PROBLEM (Youtube) """ import turtle scr = turtle.Screen() # create screen object scr.bgcolor( 'black' ) turtle.speed( 0 ) # the fastest speed turtle.pensize( 2 ) # set the width of the drawing pen turtle.color( 'skyblue' ) # set pencolor to 'skyblue' for i in range ( 30 ): turtle.fd(i* 10 ) turtle.right( 120 ) for j in range ( 29 , 0 ,- 1 ): turtle.fd(j* 10 ) # move forward turtle.left( 120 ) turtle.hideturtle() # hiding the turtle after the completion of the drawing turtle.done() # for holding the screen Output : Learn from video : Watch on youtube

Python Turtle Programs : Attractive Shell Design using Python

 Python Turtle Create a Shell like design using Python turtle. Code : """ Program to create a shell structure Source : CODE PROBLEM (Youtube) """ import turtle trt= turtle.Turtle() # create turtle object scr = turtle.Screen() # create screen object scr.bgcolor( 'black' ) colors = [ 'red' , 'orange' , 'yellow' , 'green' , 'blue' , 'indigo' , 'violet' , 'skyblue' ] trt.pensize( 3 ) # set the width of the drawing pen trt.speed( 0 ) # the fastest speed dis = 292 # initial value for c in colors: # using different colors at each iteration trt.color(c) for j in range ( 9 ): trt.left( 10 ) for i in range ( 3 ): trt.forward(dis) trt.left( 119 ) dis -= 4 trt.hideturtle() # hiding the turtle after the completion of the drawing turtle.done() # for holding the screen Output : Watch Video : Python Shell Design