f1513.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:
C#编程
开发平台:
Visual C++
- //=====================================
- // f1513.cpp
- // 非错误异常
- //=====================================
- #include<iostream>
- using namespace std;
- //-------------------------------------
- void printYesOrNoPrime(int m){
- try{
- for(int i=2; i<m; ++i)
- if(m%i==0) throw "no";
- cout<<"yesn";
- }catch(char* p){
- cout<<p<<"n";
- }
- }//------------------------------------
- int main(){
- printYesOrNoPrime(19);
- }//====================================