Практикум по программированию. Основы. Ветвление. Поле сферы

From AsIsWiki
(Difference between revisions)
Jump to: navigation, search
 
Line 80: Line 80:
 
# Python 3
 
# Python 3
  
print('\nРасчет напряженности электростатического поля сферы')
+
print('\n Расчет напряженности электростатического поля сферы')
print('---------------------------------------------------')
+
print('-----------------------------------------------------')
  
 
q = float(input(' Введите заряд сферы: '))
 
q = float(input(' Введите заряд сферы: '))
Line 87: Line 87:
 
l = float(input(' Расстояние от центра сферы до исследуемой точки: '))
 
l = float(input(' Расстояние от центра сферы до исследуемой точки: '))
  
print('---------------------------------------------------')
+
print('-----------------------------------------------------')
  
 
e = 0 if l < r else q / (l * l)
 
e = 0 if l < r else q / (l * l)

Latest revision as of 08:34, 21 November 2017

Назад · Задачи


Contents

[edit] Java

import java.util.Scanner;

public class Task17 {

    public static void main(String[] args) {

        Scanner in = new Scanner(System.in);

        System.out.println();
        System.out.println("Расчет напряженности электростатического поля сферы");
        System.out.println("---------------------------------------------------");

        System.out.print(" Введите заряд сферы: ");
        double q = in.nextDouble();

        System.out.print(" Введите радиус сферы: ");
        double r = in.nextDouble();

        System.out.print(" Расстояние от центра сферы до исследуемой точки: ");
        double l = in.nextDouble();

        System.out.println("---------------------------------------------------");

        double e = l < r ? 0 : q / (l * l);

        System.out.printf(" Напряженность поля E = %.2f в/м\n", e);
    }
}


[edit] C++

// g++ 4.2

#include <iostream>

using namespace std;

int main() {
    
    double q, r, l;
    
    cout << "\nРасчет напряженности электростатического поля сферы\n";
    cout << "---------------------------------------------------\n";
    
    cout << " Введите заряд сферы: ";
    cin >> q;
    
    cout << " Введите радиус сферы: ";
    cin >> r;
    
    cout << " Расстояние от центра сферы до исследуемой точки: ";
    cin >> l;
    
    cout << "---------------------------------------------------\n";
    
    double e = l < r ? 0 : q / (l * l);
    
    printf(" Напряженность поля E = %.2f в/м\n\n", e);
    
    return 0;
}


[edit] Python

# Python 3

print('\n Расчет напряженности электростатического поля сферы')
print('-----------------------------------------------------')

q = float(input(' Введите заряд сферы: '))
r = float(input(' Введите радиус сферы: '))
l = float(input(' Расстояние от центра сферы до исследуемой точки: '))

print('-----------------------------------------------------')

e = 0 if l < r else q / (l * l)

print(' Напряженность поля E = %.2f в/м' % e)


[edit] Pascal



[edit] JavaScript

<html lang="ru">
<head>
    <meta charset="UTF-8">
    <script>
        function calc() {
            var q = document.getElementById("qId").value;
            var r = document.getElementById("rId").value;
            var l = document.getElementById("lId").value;

            var e = l < r ? 0 : q / (l * l);

            document.getElementById("resultId").innerHTML =
                    "Напряженность поля E = " + e.toFixed(2) + " в/м";
        }
    </script>
</head>
<body>

<p>Расчет напряженности электростатического поля сферы</p>
<hr>
<p>Введите заряд сферы: <input id="qId" size="5"></p>
<p>Введите радиус сферы: <input id="rId" size="5"></p>
<p>Расстояние от центра сферы до исследуемой точки: <input id="lId" size="5"></p>
<hr>
<p id="resultId"></p>

<button onclick="calc()">Рассчитать</button>

</body>
</html>



Назад · Задачи

Personal tools
Namespaces

Variants
Actions
Navigation
Tools