Filming (for International Day)


For the International Day, me and my colleagues collaborated to produce a short film to entertain the people who are watching the talent show. 

The film involves professional throwing and catching skills. Due to the nature of the film, we had to retake the same scene many times until it works. In total, we had more that 400 takes.

We spent a lot of time in planning, what to do and how to do it. Also time allocation and time management were the keys of this project because otherwise we will not have enough time to complete all the moves we wanted to show.

I was the project leader so I had to plan and take leadership to guide the team members. I was also responsible for all the editing. I believe my leadership style was quite democratic – listening to all opinions but I was the one making decisions.

Although this project was very time consuming, I have acquired number of editing skills and learnt how to take leadership.

http://www.youtube.com/watch?v=0a1BUcSaYJw


Filming for International Day

For the International Day, I and planing with my colleagues  to produce a short film to entertain people who are watching the talent show.

We are planning to perform professional throwing and catching skills. Due to the nature of the film, it would be a long project because we have to retake the same scene until it succeed .

I am the project leader and also responsible for all the editing. 

Programming 4

This is a program that enables a user to input a number and the program displays whether it is an add number.




The Code:
#include <stdio.h>

int main(void)
{
int a;
puts("数字を入力してください。");
scanf("%d", &a);

if(a%2) /*条件が≠0だったら下の文を実行する*/
printf("奇数です");
else
puts("偶数です。");

return(0);
}

Programming 3

This is program that enables the user to input two values and it calculates the average, the sum and the ratio of the two numbers.
I used the printf and the puts function.
I also learnt how to do some simple calculations using C language.




The code:
#include <stdio.h>

int main(void)
{
double a,b;

puts("2数の平均値\n");
printf("数1:"); scanf("%lf", &a); /*%fは小数表示ってこと*/
printf("数2:"); scanf("%lf", &b); /*ただしscanf関数の場合は%lfとなる!!*/

printf("合計値は%f。\n", a+b);
printf("平均値は%f。\n", (a+b)/2);
printf("aはbの%f%%\n", a*100/b);

return(0);
}

Programming 2

I created a program that allows a user to input two values and display the sum of them.



The code:
#include <stdio.h>

int main (void)
{
int a, b, c;

puts("2つの整数を入力してください。");

/*putsっていうのはprintfに改行を加えたものとほとんど同じでもカッコ内にはひとつの実引数しか入れられない!*/

printf("整数1:"); scanf("%d", &a); /*整数を入力させる*/
printf("整数2:"); scanf("%d", &b);

printf("それらの和は%d", a+b); /*和の表示*/

return(0);
}

Programming 1

My first programming

I created a very simple program using the printf function – shows the result of inside the bracket. This program displays my name and a greeting.




The code:

#include <stdio.h>
int main(void)
{
printf("Hi my name is Shun Haginouchi.\n");
printf("This is my first programming.\n\n");

return(0);
}

New Project: Programming

I am going to start a new project – programming C

Why programming??
This is because I want to study about computer (computer science and engineering)  in university, so as a preparation for that I will learn how to program from scratch. Of course, this will be a self studying using books and resource websites.

Expected learning outcomes:
  • Increase awareness of your strengths and areas for growth
  • Undertake new challenges – learning new commands and creating my original program
  • Planned and initiated activities – learning new commands
  • Shown perseverance and commitment in their activities
  • Developed new skills – programming in C