求0-100所有的质数用c#编写using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace WindowsApplication2{ public partial class For

来源:学生作业帮助网 编辑:作业帮 时间:2024/04/18 23:41:50
求0-100所有的质数用c#编写using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace WindowsApplication2{    public partial class For

求0-100所有的质数用c#编写using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace WindowsApplication2{ public partial class For
求0-100所有的质数
用c#编写
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication2
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
}
}

我想用这个判断出里面的质数

求0-100所有的质数用c#编写using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace WindowsApplication2{ public partial class For
// 质数.cpp
// Using the Array to calculate them from 1 to 100
#include
using std::cout;
using std::cin;
using std::endl;
int main()
{
int a[ 101 ] = { 0 };
for ( int i = 3; i