English Study2007. 9. 6. 01:40
아래 내용은 English Grammar in Use의 내용을 정리한 것 입니다.
번역에 오역이나 껄끄러운 부분이 있을 수 있습니다.
알려주시면, 수정하겠습니다.


Unit 2 Present simple (I do)

일반적인 것에 대해 이야기할 때 현재형을 씁니다. 또, 어떤 일이 항상 일어나거나 반복적으로 일어 날 때 현재형을 사용합니다. 또, 무언가가 일반적으로 진리일 때도 현재형을 사용합니다.

Nurses look after patients in hospitals.
The earth goes round the sun.

기억하세요:

I work ... 이지만 He works ... 라는 것을...
They teach ... 이지만 My sister teaches ... 라는 것을...

의문문이나 부정문을 만들 때는 do/does 를 씁니다.

Do I work? Does she drive?
I don't work. He doesn't do.

I come from Canada. where do you come from?
I don't go away very often.

아래 예제에서 do 또한 본동사입니다.

What do you do? He doesn't do anything to help.

현재형은 얼마나 자주 우리가 무언가를 하는지를 이야기할 때 사용합니다.

I get up at 8'oclock every morning.
Julie doesn't drink tea very often.

I promise / I apologise etc.


때때로 우리는 무언가 말해 일을 합니다. 예를들면, 당신이 무언가를 하기로 약속했을 때, 당신은 이렇게 말합니다. 'I promise ... '; 또 당신이 무언가를 제안할 때 당신은 이렇게 말합니다. 'I suggest ...':

I promise I won't be late. (not I'm promising)
'What do you suggest I do?' 'I suggest that you ...'

아래도 같은 방법으로 말합니다.
I apologize ... / I advise ... / I insist ... / I agree ... / I refuse ... 등
Posted by virgo81

댓글을 달아 주세요

C Language2007. 8. 26. 03:53

Hi, everybody!

Now, you will make your first program.!

Please launch Dev-C++.

File menu -> New -> Project

Select the Consol Application, fill the name field as myfirst and select C Project.

사용자 삽입 이미지

finally, select OK button.

I recommend you to create a work folder for your project.

Now, I create a work folder as work.

Save myfirst.dev to work folder.

Oh, now you can see the some lines of the code.!

You just change some lines of the code.

Now, I will add a bolding line.


#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[])
{
  printf("Hello, this is my first program!\n");

  system("PAUSE");
  return 0;
}

사용자 삽입 이미지

For running your code, you need to compile.

Before compiling, save your code by using File menu -> Save.

Compile the code by using Execute menu -> Compile.

If you see the error, please check your code.

After compiling, you can run your first program by using Execute menu -> Run.

사용자 삽입 이미지

Wow!

Next lecture, I will explain the code as line by line.

See you next lecture!!!^^

Posted by virgo81
TAG c, lecture

댓글을 달아 주세요

C Language2007. 8. 25. 22:04
Hi, everybody!

Now, I will post the virgo81's C lectures for beginner!

For these lectures, you might need a C compiler.

I attatched C compiler that's name is DEV-C++.

It is a free software, but powerful!

If you want to download, click the link.


사용자 삽입 이미지



Posted by virgo81
TAG c, lecture

댓글을 달아 주세요