f1513.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // f1513.cpp
  3. // 非错误异常
  4. //=====================================
  5. #include<iostream>
  6. using namespace std;
  7. //-------------------------------------
  8. void printYesOrNoPrime(int m){
  9.   try{
  10.     for(int i=2; i<m; ++i)
  11.       if(m%i==0) throw "no";
  12.     cout<<"yesn";
  13.   }catch(char* p){
  14.     cout<<p<<"n";
  15.   }
  16. }//------------------------------------
  17. int main(){
  18.   printYesOrNoPrime(19);
  19. }//====================================
  20.