主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
讨论区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
小王桐学
2024年3月12日 21:51
整型存储 题解:C
P1440
回复 0
|
赞 0
|
浏览 447
#include <stdio.h> typedef struct IntC{ int Ob;//原来的int int Re;//反向的int }Intc; int Reverse(int n) { int s = 0; while(n) { s = s*10 + n%10; n/=10; } return s; } int main() { Intc a[10]; int i,j; for(i = 0; i < 10; i++) { scanf("%d",&a[i].O...
A1120161820
2020年3月7日 10:03
整型存储(c++)
P1440
回复 1
|
赞 1
|
浏览 8.7k
#include<iostream> #include<vector> using namespace std; class number{ private: int num; int rev_num; public: number(){} number(int x); ~number(){} void setvalue(int x); void display(); }; number::number(int x) { num = x; rev_num = 0; int tmp; while (x ...
题目
整型存储
题解数量
2
发布题解
热门题解
1
整型存储(c++)
2
整型存储 题解:C