博客
关于我
磕代码:c/c++/java:输入年龄,输出活了多少秒
阅读量:86 次
发布时间:2019-02-26

本文共 1562 字,大约阅读时间需要 5 分钟。

C??????????????

??????????????????????????C???C++?Java?????????????????????????????

C????

?C??????long int????????long int????????????2^32-1????4GB???????C??????????

#include 
int main() { long int age; scanf("%ld", &age); long int b = 31560000; printf("%ld", age * b); // %ld????????????????????? // ????age??????????? // ?age????????????}

???

  • long int????int??????????????
  • %ld?????????long int??????%d?????2^31-1?2^63-1????

C++????

?C++????long long????????long long????2^63-1??long int??????C++????????

#include 
#include
using namespace std;int main() { long long age; cin >> age; cout << age * 31560000L; // ??`long long`??????????? // ??????????}

???

  • long long?C++??long int????????????????
  • 31560000L??????????????????????

Java????

?Java????long????????long????2^63-1??C++?long long??????Java????????

import java.io.*;public class Main {    public static void main(String[] args) throws IOException {        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));        String ageStr = br.readLine();        long age = Long.parseLong(ageStr);        System.out.println(age * 31560000L);        // ??`long`????????        // ??????????    }}

???

  • Java?long??????????????????
  • Long.parseLong()???????????long?????????????????

?????

???????????????????????????

  • C???long int???????????????????%ld????
  • C++?long long???????????????????
  • Java?long??????????????????????

??????????????????????????C++?Java?????????????C??????????????????????????

???????????????????????????????????

转载地址:http://fyrk.baihongyu.com/

你可能感兴趣的文章
Python urllib2.open 连接由对等错误重置
查看>>
python urllib2详解及实例
查看>>
Python url请求提示certificate verify failed unable to get local issuer certificate
查看>>
Python UTC 日期时间对象的 ISO 格式不包括 Z(祖鲁语或零偏移)
查看>>
python valueerror object2_python遇到错误记录
查看>>
python vars的作用
查看>>
Python vcrpy库:HTTP请求记录和重放
查看>>
Python virtualenv
查看>>
python vue3实现大文件分段续传(断点续传)--带暂停和继续功能
查看>>
Python WebDriver如何打印整个页面源(html)
查看>>
Python WebSocket自动化测试:构建高效接口测试框架
查看>>
Python Web开发
查看>>
Redis 配置文件杂项。
查看>>
Python web自动化测试 —— 文件上传
查看>>
Python web自动化测试 —— 文件上传!
查看>>
Python Web自动化测试开发环境搭建(附安装包与虚拟机环境)
查看>>
python win32api键盘_Python win32api.keybd_event模拟键盘输入
查看>>
python Windows显示当前鼠标坐标
查看>>
python Workbook 表格宽度
查看>>
python write报错a byte-like object is required.not str
查看>>