From ad8cd476f2ab598750268bbbe66bcae2d1d2b9b1 Mon Sep 17 00:00:00 2001 From: luckrnx09 Date: Mon, 21 Jul 2025 08:52:59 +0800 Subject: [PATCH] Update type-conversion.md --- docs/type-conversion.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/type-conversion.md b/docs/type-conversion.md index cc05687..64d9a29 100644 --- a/docs/type-conversion.md +++ b/docs/type-conversion.md @@ -9,20 +9,20 @@ Type conversion is a common requirement in programming, and both Python and Java ### Task -Assuming there is a hard disk with a capacity of 8192MB (as a string), please convert the capacity of this hard disk to the TB unit and save the conversion result in an integer variable. +Assuming there is a hard disk with a capacity of 8192MB (as a string), please convert the capacity of this hard disk to the GB unit and save the conversion result in an integer variable. #### JavaScript implementation ```javascript -let gb = '8192MB'; -let tb = parseInt(gb) / 1024 -let intTb = parseInt(tb) -console.log(`The capacity of this hard disk is: ${intTb}TB`) +let mb = '8192MB'; +let gb = parseInt(mb) / 1024 +let intGb = parseInt(gb) +console.log(`The capacity of this hard disk is: ${intGb}GB`) ``` #### Python implementation ```python -gb = '8192MB' -int_tb = int(gb[:-2]) // 1024 -print(f"The capacity of this hard disk is: {int_tb}TB") +mb = '8192MB' +int_gb = int(mb[:-2]) // 1024 +print(f"The capacity of this hard disk is: {int_gb}GB") ``` ### Code Highlight pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy