c#/수업 과제
간호사 샐리
yeeendy
2023. 1. 1. 16:51
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hello_World
{
internal class Program
{
static void Main(string[] args)
{
string nickname = "간호사 샐리";
Console.WriteLine("이름 : {0}", nickname);
int bonus = 23;
Console.WriteLine("점수 보너스 +{0}%", bonus);
int timelimit = 5;
Console.WriteLine("제한속도 +{0}초", timelimit);
int probability = 30;
Console.WriteLine("({0}% 확률)", probability);
}
}
}