こんにちは私はmirosoftVisualStudioを初めて使用します。基本的な円を作成したいのですが、次のエラーが発生します。タイプ'double'を暗黙的にintに変換できません。明示的な変換が存在します。(キャストが足りませんか?)
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication6
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
int radius = Convert.ToInt32(textBox1.Text);
int circumference = 2 * Math.PI * radius;
int area = Math.PI * Math.Pow(radius, 2);
int volume = (4 * Math.PI / 3) * Math.Pow(radius, 3);
Graphics paper;
paper = pictureBox1.CreateGraphics();
Pen pen = new Pen(Color.Red);
paper.DrawEllipse(pen, 0, circumference, area, volume);
}
}
}