'If'에 해당되는 글 1건

  1. 2013.10.26 [C to Go] 3. 조건문
C to Go2013. 10. 26. 08:21

3. 조건문

조건문에 대해 알아보자.


C언어

#include <stdio.h>
  
int main(void)
{
    int n = 1;
    char c = 'b';

    if(n > 0) {
        printf("n > 0\n");
    }

    if(c == 'a') {
        printf("c = a\n");
    } else if(c == 'b') {
        printf("c = b\n");
    } else {
        printf("not equal\n");
    }
   
    return 0;
}


Output

http://codepad.org/TINufYEE

Go언어

package main

import "fmt"

func main() {

	n := 1
	c := "b"
	
	if n > 0 {
		fmt.Println("n > 0")
	}
	
	if c == "a" {
		fmt.Println("c = a")
	} else if c == "b" {
		fmt.Println("c = b")
	} else {
		fmt.Println("not equal")
	}
}


Output

http://play.golang.org/p/cpvjHG81_9


결론

'C to Go' 카테고리의 다른 글

[C to Go] 4. 반복문  (0) 2014.03.14
[C to Go] 2. 자료형 (data type)  (0) 2013.10.26
[C to Go] 1. Hello World  (0) 2013.10.26
[C to Go] 0. 학습목표  (0) 2013.10.23
Posted by trikyu