Reformat code and add cJSON_print function

This commit is contained in:
Aurelius84 2020-06-08 20:34:54 +08:00
parent d3912107c4
commit 9e1c3a9abd
2 changed files with 6 additions and 6 deletions

View File

@ -3,11 +3,11 @@ using namespace std;
void temperature(int t)
{
try{
if(t==100) throw "沸点!";
else if(t==0) throw "冰点!";
if(t==100) throw "It's at the boiling point.";
else if(t==0) throw "It reached the freezing point";
else cout<<"the temperature is OK..."<<endl;
}
catch(int x){cout<<"temperatore="<<x<<endl;}
catch(int x){cout<<"temperature="<<x<<endl;}
catch(char const*s){cout<<s<<endl;}
}
int main(){

View File

@ -17,9 +17,9 @@ class DiskNotFound:public FileSysException{
public:
char *Where(){return "DiskNotFound...";}
};
void main(){
int main(){
try{
..... //³ÌÐò´úÂë
// ..... //³ÌÐò´úÂë
throw FileSysException();
}
catch(DiskNotFound p){cout<<p.Where()<<endl;}
@ -27,7 +27,7 @@ void main(){
catch(FileSysException p){cout<<p.Where()<<endl;}
catch(BasicException p){cout<<p.Where()<<endl;}
try{
..... //³ÌÐò´úÂë
// ..... //³ÌÐò´úÂë
throw DiskNotFound();
}
catch(BasicException p){cout<<p.Where()<<endl;}