43.编写一个程序,判断用户输入的字符是否是数字,若是数字,则输出“a numerical character”

//1、学习到字符输入
//2、判断字符

#include<iostream>
using namespace std;

int main()
{
    char a;
    cout<<"please input a charcter: "<<endl;
    cin>>a;

    if(a>‘0‘&&a<‘9‘)
    {
        cout<<"it‘s a numerical character!"<<endl;
    }else
    {
        cout<<"it‘s not a numerical character!"<<endl;
    }
    return 0;
}

43.编写一个程序,判断用户输入的字符是否是数字,若是数字,则输出“a numerical character”

时间: 2024-10-03 21:54:20

43.编写一个程序,判断用户输入的字符是否是数字,若是数字,则输出“a numerical character”的相关文章

编写一个程序,用户输入两个数,求出其加减乘除,并用消息框显示计算结果

编写一个程序,用户输入两个数,求出其加减乘除,并用消息框显示计算结果 import javax.swing.JOptionPane; public class Test{ public static void main(String[] args) { int n1=Integer.parseInt(JOptionPane.showInputDialog("Input number 1: ")); int n2=Integer.parseInt(JOptionPane.showInpu

编写一个程序,用户输入两个数,求其加减乘除,并用消息框显示计算结果。

代码: //an complex program import javax.swing.JOptionPane;//import class JOptionPane public class Complex { public static void main(String[] args) { // TODO 自动生成的方法存根 String firstNumber,     //first string entered by user secondNumber;    //second stri

编写一个程序,统计输入字符串中每一个小写英文字母出现的次数

import java.util.Scanner; /** * @author:(LiberHome) * @date:Created in 2019/3/1 22:18 * @description: * @version:$ */ /*编写一个程序,统计输入字符串中每一个小写英文字母出现的次数*/ public class page0901 { public static void main(String[] args) { /*首先,输入一段字符串作为字符数组*/ System.out.p

编写一个程序从键盘输入字符,并按要求输出

从键盘输入字符,并按要求输出.下面有几点说明: (1)这里的getchar()函数为字符输入函数,putchar()函数为字符输出函数. (2) EOF是end of file的缩写.表示"文字流"(stream)的结尾,!=EOF表示文件还没有结束. (3) continue只能放到循环体中,它只把循环体从continue及以下的部分忽略掉,不影响程序的循环. #define _CRT_SECURE_NO_WARNINGS 1 #include<stdio.h> int 

编写一个程序,打印输入中各个字符出现频度的直方图

当中程序练习.输出C直方图 #include <stdio.h> main() {    int a[30];    int i,j,c;    j = i = 0;    for (i = 0; i < 30; i++){         a[i] = 0;    }    while ((c = getchar()) != '#'){         if (c > '0' && c<= '30')             ++a[c - '0'];   

编这样一个程序,用户输入10个整数,程序找出其中的最大值和最小值

#include<stdio.h> #include<string.h> int main() { char arr[10]={8,12,14,12,12,15,15,5,6,7}; char arr1[10]={8,12,14,12,12,15,15,5,6,7}; int max; int min; int i,j,k; for(i=0;i<9;i++) { j=i+1; if(arr[i]>arr[j]) { max=arr[i]; arr[j]=arr[i];

编写一个程序把较长的输入行“折”成短一些的两行或多行

/*******************************************编写一个程序把较长的输入行"折"成短一些的两行或多行,折行的位置在输入行的第n列之前的最后一个非空格符之后.要保证程序能够智能地处理输入行很长以及在指定的列前没有空格或制表符的情况.*************************************************/#include <stdio.h>#define MAXCOL 10#define TABINC 8cha

编写一个程序,以每行一个单词的形式打印其输入。

1-12 #include <stdio.h>#include <ctype.h>#define OUT 0 //当前无单词#define IN 1 //标志当前是单词 int main(){ int in, state; //in来保存输入,state状态,Word保存单词 state = OUT; //初始状态为无单词 while((in = getchar()) != EOF) //测试是否还有输入 { if(in == ' ' || in == '\n' || in ==

工程师技术(五):Shell脚本的编写及测试、重定向输出的应用、使用特殊变量、编写一个判断脚本、编写一个批量添加用户脚本

一.Shell脚本的编写及测 目标: 本例要求两个简单的Shell脚本程序,任务目标如下: 1> 编写一个面世问候 /root/helloworld.sh 脚本,执行后显示出一段话"Hello World!!"   2> 编写一个能输出系统信息的 /root/sysinfo 脚本,执行后依次输出当前红帽系统的版本信息.当前使用的内核版本.当前系统的主机名 方案: 规范Shell脚本的一般组成: 1> #! 环境声明(Sha-Bang)    2> # 注释文本