Top >VB.NET 練習問題集

2. 入力

練習問題 2 - 1

String 型の変数 s に文字列を入力し、s の値を表示するプログラムを作成しなさい


Dim s As String

s = Console.ReadLine()

Console.WriteLine(s)

練習問題 2 - 2

Integer 型の変数 x に数値を入力し、x の値を表示するプログラムを作成しなさい


Dim x As Integer

x = Integer.Parse(Console.ReadLine())

Console.WriteLine(x)

練習問題 2 - 3

Integer 型の変数 x に数値を入力し、x を 1 乗、2 乗、3 乗した結果を表示するプログラムを作成しなさい


Dim x As Integer

x = Integer.Parse(Console.ReadLine())

Console.WriteLine(x ^ 1)
Console.WriteLine(x ^ 2)
Console.WriteLine(x ^ 3)

練習問題 2 - 4

Integer 型の変数 x、y にそれぞれ数値を入力し、x と y の和、差( x - y )、積、除算( x ÷ y )、商と余り( x ÷ y )、を表示するプログラムを作成しなさい


Dim x, y As Integer

x = Integer.Parse(Console.ReadLine())
y = Integer.Parse(Console.ReadLine())

Console.WriteLine("和 {0}", x + y)
Console.WriteLine("差 {0}", x - y)
Console.WriteLine("積 {0}", x * y)
Console.WriteLine("除算 {0}", x / y)
Console.WriteLine("商 {0}", x \ y)
Console.WriteLine("余り {0}", x Mod y)

練習問題 2 - 5

2つの整数値を入力し、平均値を求めるプログラムを作成しなさい


Dim x, y As Integer

x = Integer.Parse(Console.ReadLine())
y = Integer.Parse(Console.ReadLine())

Console.WriteLine("平均値={0}", (x + y) / 2)

練習問題 2 - 6

年齢を訊ね、生まれてから現在までの、おおよその日数を表示するプログラムを作成しなさい


Dim age As Integer

Console.Write("あなたの年齢は?")
age = Integer.Parse(Console.ReadLine())

Console.WriteLine("生まれてから今まで、およそ {0}日です", age * 365)
PAPER BOWL
NEZEN