검색결과 리스트
전체보기에 해당되는 글 1767건
- 2023.02.12 백준 9498번 시험 성적(JAVA, C#)
- 2023.02.12 백준 1330번 두 수 비교하기(C#, JAVA)
- 2023.02.12 백준 25083번 새싹(C#, JAVA)
- 2023.02.12 백준 10172번 개(C#, JAVA)
- 2023.02.12 백준 10171번 고양이(JAVA, C#)
- 2023.02.12 백준 2588번 곱셈(JAVA, C#)
- 2023.02.12 백준 10430번 나머지(JAVA, C#)
- 2023.02.12 백준 3003번 JAVA, C# (킹, 퀸, 룩, 비숍, 나이트, 폰)
글
백준 9498번 시험 성적(JAVA, C#)
자바
import java.util.*;
public class Main{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
int a;
a = sc.nextInt();
if(a >= 90 && a <= 100)
{
System.out.println("A");
}
else if(a < 90 && a >= 80)
{
System.out.println("B");
}
else if(a < 80 && a >= 70)
{
System.out.println("C");
}
else if(a < 70 && a >= 60)
{
System.out.println("D");
}
else
{
System.out.println("F");
}
}
}
///////////////
C#
using System;
namespace Baekjoon {
class Program {
static void Main() {
string s = Console.ReadLine();
int a = int.Parse(s);
if(a >= 90 && a <= 100)
{
Console.WriteLine("A");
}
else if(a < 90 && a >= 80)
{
Console.WriteLine("B");
}
else if(a < 80 && a >= 70)
{
Console.WriteLine("C");
}
else if(a < 70 && a >= 60)
{
Console.WriteLine("D");
}
else
{
Console.WriteLine("F");
}
}
}
}
'백준 프로그래밍' 카테고리의 다른 글
백준 14681번 사분면(JAVA, C#) (0) | 2023.02.12 |
---|---|
백준 2753번 윤년(JAVA, C#) (0) | 2023.02.12 |
백준 1330번 두 수 비교하기(C#, JAVA) (0) | 2023.02.12 |
백준 25083번 새싹(C#, JAVA) (0) | 2023.02.12 |
백준 10172번 개(C#, JAVA) (0) | 2023.02.12 |
글
백준 1330번 두 수 비교하기(C#, JAVA)
자바
import java.util.*;
public class Main{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
int a, b;
a = sc.nextInt();
b = sc.nextInt();
if(a > b)
{
System.out.println(">");
}
else if(a < b)
{
System.out.println("<");
}
else
{
System.out.println("==");
}
}
}
/////
C#
using System;
namespace Baekjoon {
class Program {
static void Main() {
string s = Console.ReadLine();
string[] num = s.Split();
int a = int.Parse(num[0]);
int b = int.Parse(num[1]);
if(a > b)
{
Console.WriteLine(">");
}
else if(a < b)
{
Console.WriteLine("<");
}
else
{
Console.WriteLine("==");
}
}
}
}
'백준 프로그래밍' 카테고리의 다른 글
백준 2753번 윤년(JAVA, C#) (0) | 2023.02.12 |
---|---|
백준 9498번 시험 성적(JAVA, C#) (0) | 2023.02.12 |
백준 25083번 새싹(C#, JAVA) (0) | 2023.02.12 |
백준 10172번 개(C#, JAVA) (0) | 2023.02.12 |
백준 10171번 고양이(JAVA, C#) (0) | 2023.02.12 |
글
백준 25083번 새싹(C#, JAVA)
자바
import java.util.*;
public class Main{
public static void main(String args[]){
System.out.println(" ,r'\"7");
System.out.println("r`-_ ,' ,/");
System.out.println(" \\. \". L_r'");
System.out.println(" `~\\/");
System.out.println(" |");
System.out.println(" |");
}
}
///////////////////
C#
using System;
namespace Baekjoon {
class Program {
static void Main(string[] args) {
Console.WriteLine(" ,r'\"7");
Console.WriteLine("r`-_ ,' ,/");
Console.WriteLine(" \\. \". L_r'");
Console.WriteLine(" `~\\/");
Console.WriteLine(" |");
Console.WriteLine(" |");
}
}
}
'백준 프로그래밍' 카테고리의 다른 글
백준 9498번 시험 성적(JAVA, C#) (0) | 2023.02.12 |
---|---|
백준 1330번 두 수 비교하기(C#, JAVA) (0) | 2023.02.12 |
백준 10172번 개(C#, JAVA) (0) | 2023.02.12 |
백준 10171번 고양이(JAVA, C#) (0) | 2023.02.12 |
백준 2588번 곱셈(JAVA, C#) (0) | 2023.02.12 |
글
백준 10172번 개(C#, JAVA)
자바
import java.util.*;
public class Main{
public static void main(String args[]){
System.out.println("|\\_/|");
System.out.println("|q p| /}");
System.out.println("( 0 )\"\"\"\\");
System.out.println("|\"^\"` |");
System.out.println("||_/=\\\\__|");
}
}
/////////////////////////////////////////
C#
using System;
namespace Baekjoon {
class Program {
static void Main(string[] args) {
Console.WriteLine("|\\_/|");
Console.WriteLine("|q p| /}");
Console.WriteLine("( 0 )\"\"\"\\");
Console.WriteLine("|\"^\"` |");
Console.WriteLine("||_/=\\\\__|");
}
}
}
'백준 프로그래밍' 카테고리의 다른 글
백준 1330번 두 수 비교하기(C#, JAVA) (0) | 2023.02.12 |
---|---|
백준 25083번 새싹(C#, JAVA) (0) | 2023.02.12 |
백준 10171번 고양이(JAVA, C#) (0) | 2023.02.12 |
백준 2588번 곱셈(JAVA, C#) (0) | 2023.02.12 |
백준 10430번 나머지(JAVA, C#) (0) | 2023.02.12 |
글
백준 10171번 고양이(JAVA, C#)
자바
import java.util.*;
public class Main{
public static void main(String args[]){
System.out.println("\\ /\\");
System.out.println(" ) ( ')");
System.out.println("( / )");
System.out.println(" \\(__)|");
}
}
/////////
C#
using System;
namespace Baekjoon {
class Program {
static void Main(string[] args) {
Console.WriteLine("\\ /\\");
Console.WriteLine(" ) ( ')");
Console.WriteLine("( / )");
Console.WriteLine(" \\(__)|");
}
}
}
'백준 프로그래밍' 카테고리의 다른 글
백준 25083번 새싹(C#, JAVA) (0) | 2023.02.12 |
---|---|
백준 10172번 개(C#, JAVA) (0) | 2023.02.12 |
백준 2588번 곱셈(JAVA, C#) (0) | 2023.02.12 |
백준 10430번 나머지(JAVA, C#) (0) | 2023.02.12 |
백준 3003번 JAVA, C# (킹, 퀸, 룩, 비숍, 나이트, 폰) (0) | 2023.02.12 |
글
백준 2588번 곱셈(JAVA, C#)
C#
using System;
namespace Baekjoon {
class Program {
static void Main() {
string s = Console.ReadLine();
string s2 = Console.ReadLine();
char[] s3 = s2.ToCharArray();
int num = int.Parse(s);
int[] num2 = new int[s2.Length];
for(int i = 0;i<s2.Length;i++)
{
num2[i] = int.Parse(s2[i].ToString());
}
Console.WriteLine(num * num2[2]);
Console.WriteLine(num * num2[1]);
Console.WriteLine(num * num2[0]);
Console.WriteLine(num * num2[2] + num * num2[1] * 10 + num * num2[0] * 100);
}
}
}
/////////
자바
import java.util.*;
public class Main{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
int a, b;
a = sc.nextInt();
b = sc.nextInt();
System.out.println(a*(b%10));
System.out.println((a*((b/10)%10)));
System.out.println(a*(b/100));
System.out.println(a*b);
}
}
'백준 프로그래밍' 카테고리의 다른 글
백준 10172번 개(C#, JAVA) (0) | 2023.02.12 |
---|---|
백준 10171번 고양이(JAVA, C#) (0) | 2023.02.12 |
백준 10430번 나머지(JAVA, C#) (0) | 2023.02.12 |
백준 3003번 JAVA, C# (킹, 퀸, 룩, 비숍, 나이트, 폰) (0) | 2023.02.12 |
백준 18108번 1998년생인 내가 태국에서는 2541년생?!(C#, JAVA) (0) | 2023.02.11 |
글
백준 10430번 나머지(JAVA, 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]);
Console.WriteLine((a+b)%c);
Console.WriteLine(((a%c)+(b%c))%c);
Console.WriteLine((a*b)%c);
Console.WriteLine(((a%c)*(b%c))%c);
}
}
}
//////////////////
import java.util.*;
public class Main{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
int a, b, c;
a = sc.nextInt();
b = sc.nextInt();
c = sc.nextInt();
System.out.println((a+b)%c);
System.out.println(((a%c)+(b%c))%c);
System.out.println((a*b)%c);
System.out.println(((a%c)*(b%c))%c);
}
}
'백준 프로그래밍' 카테고리의 다른 글
백준 10171번 고양이(JAVA, C#) (0) | 2023.02.12 |
---|---|
백준 2588번 곱셈(JAVA, C#) (0) | 2023.02.12 |
백준 3003번 JAVA, C# (킹, 퀸, 룩, 비숍, 나이트, 폰) (0) | 2023.02.12 |
백준 18108번 1998년생인 내가 태국에서는 2541년생?!(C#, JAVA) (0) | 2023.02.11 |
백준 C#, JAVA 10926번 아이디 string 뒤에 ??! 붙이기 (0) | 2023.02.11 |
글
백준 3003번 JAVA, C# (킹, 퀸, 룩, 비숍, 나이트, 폰)
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.02.12 |
---|---|
백준 10430번 나머지(JAVA, C#) (0) | 2023.02.12 |
백준 18108번 1998년생인 내가 태국에서는 2541년생?!(C#, JAVA) (0) | 2023.02.11 |
백준 C#, JAVA 10926번 아이디 string 뒤에 ??! 붙이기 (0) | 2023.02.11 |
백준 JAVA, C# 10089번 사칙연산, 나머지 구하기 (0) | 2023.02.11 |