• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
zihao,wang
博客园 | 首页 | 新随笔 | 新文章 | 联系 | 订阅 订阅 | 管理

2019年1月3日

罗马数字转换成整数
摘要: 方法一: class Solution {public: int romanToInt(string s) { int len=s.size(); map<string,int> number{ {"I",1}, {"V",5}, {"X",10}, {"L",50}, {"C",100}, {"D 阅读全文
posted @ 2019-01-03 23:10 zihao,wang 阅读(136) 评论(0) 推荐(0)
 
回文数
摘要: 方法一: class Solution {public: bool isPalindrome(int x) { if(x<0) return false; int count=0; //用来记录x的位数 int num; //每一位的数字 int y[10]; //声明一个数组用来存每一位的数字 w 阅读全文
posted @ 2019-01-03 18:57 zihao,wang 阅读(179) 评论(0) 推荐(0)
 
回文数
摘要: 方法一 class Solution {public: bool isPalindrome(int x) { if(x<0) return false; int count=0; //用来记录x的位数 int num; //每一位的数字 int y[30]; //声明一个数组用来存每一位的数字 wh 阅读全文
posted @ 2019-01-03 18:55 zihao,wang 阅读(24) 评论(0) 推荐(0)
 
 

公告


博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3