(用c++输入输出语句)编程序。输入一个3位的正整数,输出其各位上的数字。

日期:2017-06-14 19:23:56 人气:2

(用c++输入输出语句)编程序。输入一个3位的正整数,输出其各位上的数字。

C++程序: #include using namespace std;int main(){ int num; int a, b, c; printf("请输入一个三位数:"); cin>>num; a = num / 100; b = num / 10 % 10; c = num % 10; cout<<"三位数字分别是:"<<a<<" "<<b<<&qu
    A+
热门评论