⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 f0604.cpp

📁 it is a usefull thing
💻 CPP
字号:
//=====================================
// f0604.cpp
// 未声明内联
//=====================================
#include<iostream>
using namespace std;
//-------------------------------------
bool isnumber(char);                 // 此处无inline
//-------------------------------------
int main(){
  for(char c; cin>>c && c!='\n'; )
    if(isnumber(c)) cout<<"you entered a digit.\n";
    else cout<<"you entered a non-digit.\n";
}//------------------------------------
inline bool isnumber(char ch){    // 此处为inline
  return ch>='0' && ch<='9' ? 1 : 0;
}//====================================

 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -