我试图在c ++源代码中翻译f(x)= x - e - (x 2 ),但我一直在收到错误。我试过了:
private void button_Save_Click(object sender, EventArgs e)
{
SaveFileDialog sfd = new SaveFileDialog();
sfd.Filter = "PNG(*.PNG)|*.png";
if (sfd.ShowDialog() == DialogResult.OK)
pictureBox.Image.Save(sfd.FileName, ImageFormat.Png);
}
有什么见解? 如果它有帮助,我使用Code :: Blocks
答案 0 :(得分:1)
#include <math.h>
double f(double x)
{
return x - exp(-(x*x));
}