C语言怎么弄提示语 就是程序运行了会出现中文提示,教你要输入什么的,例如,请输入五位以下的数字

RT

第1个回答  推荐于2018-04-21
#include<iostream>
#include<stdlib.h>
#include<stdio.h>

using namespace std;

void main()
{
int a;
printf("请输入五位以下的数字\n");
scanf("%d",&a);

system("pause");
}本回答被提问者和网友采纳
第2个回答  2011-10-07
用printf输出提示呀!
printf("请输入五位以下的数字");
scanf(......);
第3个回答  2011-10-07
int num;
printf("请输入五位以下的数字:\t");
scanf("%d",&num);
第4个回答  2018-07-28
62年11月25日
相似回答