Starting something you desired to do is a very throbbing thing. When I was in forth grade, I was so desperate to learn programming. I asked my mom and dad lot of times and finally I got a permission to learn programming. I'll tell you what programming I learn and what programs did a made
C language, I learned C language programming because it was the easiest programming among the other programmings. I learned the easiest programming though it was bit hard at first but it was a very fun thing to do. This is the program I made the first time.
#include <stdio.h>
main void()
{
printf("Hello CPP")
}
The first program I made was a very simple and easy program but I was very happy to make it that time.
Orderly I learned more and more and later I could make a small game, rock scissor paper game and score measure program. This is one program that I made among the programs.
#include <stdio.h>
void main()
{
double score_d;
//int score;
printf("ARE YOU A STUDENT? IF IT'S RIGHT INSERT YOUR SCORE.");
scanf_s("%lf",&score_d);
if((score_d > 4.5)||(score_d < 0))
{
printf("ARE YOU A STUDENT YOU INSERTED A WRONG SCORE,\n INSERT YOUR SCORE FROM 0 TO 4.5.\n");
}
else if(score_d < 2.0)
{
printf("YOUR TEST SCORE IS TOO BAD YOU CAN'T GRADE UP.\n");
}
else if(score_d < 3.0)
{
printf("YOUR TEST SCORE IS NOT SO BAD BUT YOU HAVE TO STUDY MORE.\n");
}
else if(score_d < 4.0)
{
printf("YOU DID A GOOD JOB. YOU'RE GRADING UP.\n");
}
else if(score_d <= 4.5)
{
printf("YOU DID A EXCELLENT JOB. YOU CAN GET A SCHOLORSHIP.\n");
}
else
printf("ARE YOU A STUDENT YOU INSERTED A WRONG SCORE,\n INSERT YOUR SCORE FROM 0 TO 4.5.\n");
}
Learning something I desired to do was a little bit hard but it was very fun to me. If I didn't tried to do something desperate, I couldn't feel the fun when I'm doing something I wanted to do. I learned we have to try something you wanted to do.
David,
ReplyDeleteWhile your topic was interesting and unique, I wish that you had written more details on why learning C language programming was important and fun for you. We have talked about the importance of developing ideas by providing supporting details. I wish that you had done this to make your essay more vivid.