Popular posts from this blog
Student result management level-1 DFD
By
Hemant Gupta
-
REFLECTION OF A TRIANGLE (COMPUTER GRAPHICS)
By
Hemant Gupta
-
#include<stdio.h> #include<conio.h> #include<graphics.h> #include<stdlib.h> void main() { int gd=DETECT,gm; int x1,y1,x2,y2,x3,y3; char a; clrscr(); initgraph(&gd,&gm,""); printf("\n enter the coordinates of triangle"); sacnf("%d%d%d%d%d%d",&x1,&y1,&x2,&y2,&x3,&y3); line(x1,y1,x2,y2); line(x2,y2,x3,y3); line(x3,y3,x1,y1); line(320,0,320,430); line(0,240,640,240); printf("\n enter the axis of reflection"); scanf("%d",&a); if(a='x'||a='X') { x1=x1; x2=x2; x3=x3; y1=y1+240; y2=y2+240; y3=y3+240; } else if(a='y'||a='Y') { y1=y1; y2=y2; y3=y3; x1+=320; x2+=320; x3+=320; } printf("\n triangle after reflection"); line(x1,y1,x2,y2); line(x2,y2,x3,y3); line(x3,y3,x1,y1); getch(); closegraph(); }
sexy
ReplyDeletebnbn
ReplyDeleteis(B>c)?
ReplyDeleteyour flowchart condition wrong..because this condition is false means then go in to print c not print b................
Yes u r correct.
Deleteis(B>c)?
YES->PRINT B
NO->PRINT C
ya..
ReplyDeleteIf B<C then Print C,not B
Yes It is to be connected to C if B>C is No. How can it connect to same step for both YES and NO answers
ReplyDeleteRamesh Pulluri.. (Sparkrill International School, Waraganl)
the flow chart is slightly erroneous..we can not connect the same STEP to both the condition of true false..when we ask B>C nd if the condition is yes we print B and if the condition is false we print C
ReplyDeleteGood, but I think it is a little hard process
ReplyDeleteThanks, but try to make it easier