Calculator version francais

juste une calculatrice pour faire des division

当前为 2024-05-02 提交的版本,查看 最新版本

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Calculator version francais
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  juste une calculatrice pour faire des division
// @author       LongName
// @match        https://agma.io
// @match        https://www.youtube.com
// @match        https://www.roblox.com/home
// @match        https://www.chess.com
// @match        https://github.com
// @match        https://adblockplus.org
// @icon         https://cdn-icons-png.flaticon.com/512/4374/4374752.png
// @grant        none
// ==/UserScript==

   (function() {
       'use strict';
// vous pouvez en fait ajouter des sites Web juste en haut en ajoutant a la suite // @match        https://exemple.com/.fr/.io

// ce programme calcule le quotient de 2 entiers entrés par l'itulisateur

   let dividende;
   let diviseur;
   let quotient = 1;

   console.log(dividende);

   dividende = Number.parseInt(prompt("entrer le dividende entier", "0"));
   diviseur = Number.parseInt(prompt("entrer le diviseur entier ", "1"));
   quotient = dividende / diviseur;

   alert("le quotient est "+quotient+".");

   console.log(`le quotient est ${quotient}.`);

})();