2023. 3. 27. 14:23ㆍ백준 알고리즘
C#
using System;
namespace Baekjoon {
class Program {
static void Main() {
string s = Console.ReadLine();
string[] ss = s.Split();
int a = int.Parse(ss[0]);
int b = int.Parse(ss[1]);
int c = int.Parse(ss[2]);
int d = int.Parse(ss[3]);
int e = int.Parse(ss[4]);
int f = int.Parse(ss[5]);
Console.WriteLine(1-a);
Console.WriteLine(1-b);
Console.WriteLine(2-c);
Console.WriteLine(2-d);
Console.WriteLine(2-e);
Console.WriteLine(8-f);
}
}
}
/////////////////////
자바
import java.util.*;
public class Main{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
int a, b, c, d, e, f;
a = sc.nextInt();
b = sc.nextInt();
c = sc.nextInt();
d = sc.nextInt();
e = sc.nextInt();
f = sc.nextInt();
System.out.println(1-a);
System.out.println(1-b);
System.out.println(2-c);
System.out.println(2-d);
System.out.println(2-e);
System.out.println(8-f);
}
}
'백준 알고리즘' 카테고리의 다른 글
백준 2588번 곱셈(JAVA, C#) (0) | 2023.04.01 |
---|---|
백준 10430번 나머지(JAVA, C#) (0) | 2023.03.29 |
백준 18108번 1998년생인 내가 태국에서는 2541년생?! C#(JAVA) (0) | 2023.03.10 |
백준 C#, JAVA 10926번 아이디 string 뒤에 ??! 붙이기 (0) | 2023.03.10 |
백준 JAVA, C# 10089번 사칙연산, 나머지 구하기 (0) | 2023.03.09 |