console-帮帮忙。谢。。。。。。。。。。。。

问题描述

帮帮忙。谢。。。。。。。。。。。。
class Program
{
static void Main(string[] args)
{
}
bool isPrime(int n)
{
if (n < 2) return false;
if (n == 2) return true;
for (int i = 2; i <= n / 2; i++)
{
if (n % i == 0) return false;
}
return true;
Console.Write(""输出{0}是素数""n );
else
Console .Write (""输出{0}不是素数""n );
Console .ReadKey ();

    }}

}

解决方案

static void Main(string[] args)
{
int n = 7;
if (isPrime(n))
Console.Write(""输出{0}是素数""n );
else
Console .Write (""输出{0}不是素数""n );
Console .ReadKey ();
}
删除你的那三行

解决方案二:
而且,我都给你调用了
for (int i = 0; i <= 20; i++)
{
Console.WriteLine(""{0}{1}是素数"" i isPrime(i) ? """" : ""不"");
}
这很清楚嘛,一个是函数一个是调用
你怎么自己在函数里面添加莫名其妙的三行代码

解决方案三:
你想问什么?直接在Main中调用isPrime不就可以吗

解决方案四:
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int n = 3;
bool flag = isPrime(n);
Console.WriteLine(flag ? n + ""是素数"" : n + ""不是素数"");
}

    static bool isPrime(int n)    {        if (n < 2) return false;        if (n == 2) return true;        for (int i = 2; i <= n / 2; i++)        {            if (n % i == 0) return false;        }        return true;    }}

}

解决方案五:
static void Main(string[] args)
{
int n = 4;
bool result=isPrime(n);
if (result == true)
{
Console.WriteLine(""是素数"");
}
else
{
Console.WriteLine(""不是素数"");
}
Console.ReadLine();
}

 static bool isPrime(int n)  {      if (n < 2)          return false;      if (n == 2)          return true;      for (int i = 2; i <= n / 2; i++)      {          if (n % i == 0)               return false;      }      return true;  }

解决方案六:
http://blog.csdn.net/xianfajushi/article/details/25125133

解决方案七:
楼主你自己贴出的代码。你得提出你要问的问题?????

时间: 2024-10-31 18:22:04

console-帮帮忙。谢。。。。。。。。。。。。的相关文章

程序出错了 请朋友帮帮忙 谢啦

问题描述 usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Text;usingSystem.Windows.Forms;namespace人力资源管理系统{publicpartialclassfrmLogin:Form{publicfrmLogin(){InitializeComponent();}priv

为了这套资源,请各位兄弟姐妹帮帮忙,小弟跪谢!

问题描述 最近需要这套资源,在网上找了好久才找到,但是要有100点券才能下载,请各位兄弟姐妹帮帮忙,真的很急,如果到了100点券我就可以下载了,希望你们能够帮忙点一下下面的这个地址,小弟感激不尽!谢谢....如果我下载了,我第一时间在社区里把资源共享给大家,再次肯求大家帮帮我..华软网站软件下载下载地址:http://www.hur.cn/tg/linkin.asp?linkid=142318数字图像获取.处理与分析源盘(42M) 解决方案 解决方案二:顶起,一定能够下载的.解决方案三:爱莫能助

接收从GPRS返回的指令,请大家帮帮忙^_^

问题描述 我想用C#编程实现与GPRS握手,向GPRS发AT指令,但总是无法显示OK,当我把程序命令提示符窗口关上后,打开串口调试助手,却能直接在接收区内看到之前GPRS对之前AT指令的返回"OK",难道我从串口读数据的部分有问题么,请大家帮帮忙,小妹在此谢过了!!usingSystem;usingSystem.IO.Ports;usingSystem.Text;usingSystem.Threading;namespaceConsoleApplication3{classProgra

分辨率-画面插值加大显示尺寸,请各位大神帮帮忙,谢谢,急、急、急、在线等

问题描述 画面插值加大显示尺寸,请各位大神帮帮忙,谢谢,急.急.急.在线等 现在我有台机子是双镜头的,但是画面显示分辨率的尺寸为1920*720,能不能通过插值的算法把尺寸改为1920*1080,请各位大神帮帮忙,在此谢过了!!!! 解决方案 可以,直接y坐标放大一倍就可以了,平滑下

javaweb-myeclipse开启weblogic时报了如下错误,请各位帮帮忙,谢谢了

问题描述 myeclipse开启weblogic时报了如下错误,请各位帮帮忙,谢谢了 2016-2-29 21:37:30 com.sun.faces.config.ConfigureListener contextInitialized 信息: Initializing Sun's JavaServer Faces implementation (1.2_03-b04-FCS) for context '/console' 2016-2-29 21:37:30 com.sun.faces.co

论坛里朋友们帮帮忙,我遇上麻烦了

问题描述 论坛里朋友们帮帮忙,我遇上麻烦了 个人在弄个web项目,可没想搭建spring框架时就冒出这么一堆问题来,自个弄两天了也每个头绪,无奈来着找大伙帮忙,spring版本是3.1.0的,以下是材料:控制台日志:严重: A child container failed during startjava.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException: Failed to start comp

buffer-大家帮帮忙!我这个上传文件的方法为什么会限制文件的大小啊?文件超过一定的大小,上传就失败了!

问题描述 大家帮帮忙!我这个上传文件的方法为什么会限制文件的大小啊?文件超过一定的大小,上传就失败了! private void PostFile(string filename) { FileStream stream = new FileInfo(filename).OpenRead(); var shortfilename = Path.GetFileName(filename); HttpWebRequest request = (HttpWebRequest)HttpWebReques

c#调用c++编写的dll总是出现问题,哪位高手帮帮忙

问题描述 我的这个程序,使用c#调用c++编写的dll,总是出现以下这个问题,那位高手能够帮帮忙,小女子在此先感谢了.大家就救我吧.c++编写的dll中的函数voidEFSgetUsrThesaurus(pUsrDicFileNameTableDicFlNmTbl,pUsrKeyWordTableKeyWdTbl,pUsrThesaurusTableThTbl,EFSDICSTATUS*EFS_dicstatus);c++中的结构体typedefstruct{intCnt;struct{char

hibernate 查询结果和数据库不一致,各个大虾帮帮忙啊,急 

问题描述 表是U_ser,对象是User.使用的dao如下Stringhql="selectcount(*)ascntfromUser";Listlist=session.createQuery(hql).list();结果cnt是10.然后用hql插入一个user.再次用上面的hql查cnt的结果是11,没问题.但是我用Stringsql="selectcount(*)ascntfromU_ser";Listlist=session.createSQLQuery(

frame-急、急、急,大神们帮帮忙

问题描述 急.急.急,大神们帮帮忙 frame框架中,我修改密码后转到登录页面如何实现 (我用的是Spring MVC) 求大神帮忙,谢了