Problem S: 零起点学算法14——三位数反转
Posted chenlong991223
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Problem S: 零起点学算法14——三位数反转相关的知识,希望对你有一定的参考价值。
#include<stdio.h> #include<stdlib.h> int main() { int a,b,c,s; scanf("%d",&s); a=s/100; b=s%100/10; c=s%100%10; printf("%d%d%d",c,b,a); system("pause"); return 0; }
以上是关于Problem S: 零起点学算法14——三位数反转的主要内容,如果未能解决你的问题,请参考以下文章
Problem I: 零起点学算法30——输出四位完全平方数