百位:"<<b<<",十位:"<<s<<",个位:"<<g<<",平方根:"<<m<<endl; return 0;}/*运行结果: 1234千位:1,百位:2,十位:3,个位:4,平方根:35.1283*/
配合使用除法个取余运算。就能搞定了。123%10 = 3,123/10 = 12,12%10 = 2;12 / 10 = 1懂了么?至于求平方根,可以使用库函数sqrt()。