题解 1866: 三位数反转

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

三位数反转 (C语言代码)

摘要:解题思路:用字符串保存直接反输出注意事项:直接输出printf("%c%c%c",s[2],s[1],s[0]);是错误的  因为输入两位数的时候,s[2]是'\0'了参考代码:#in……

三位数反转 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;int main(){ int n; while(cin……

三位数反转 (C++代码)

摘要:解题思路:注意事项:参考代码:简单点#include<iostream>using namespace std;int main(){ int n; while (cin >> n) cout <<……

三位数反转 (C语言代码)

摘要:解题思路:    循环分离各位数。参考代码:#include<stdio.h> int main() {     int i, n, a[3] = {0};          while……

三位数反转 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;int main(){   int a,b,c,n;  ……

三位数反转 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;int main(){   int a,b,c,n;  ……

三位数反转 (C语言代码)

摘要:解题思路:                输入三位数,分离出它的百位、十位和个位,反转后输出注意事项:                1.有多组输入数据  &nbs

三位数反转 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int i,j,k,n;    while(scanf("%d",&n)!=EOF)    {    w……

三位数反转 (C语言代码)

摘要:解题思路:注意事项:输出数必须分离,否则错。参考代码:#include<stdio.h>int main(){ int x,i,a,b,c; while((i = scanf("%d",&x))!= ……