Практикум по программированию. Основы. Ветвление. Поле сферы
From AsIsWiki
Contents[hide] |
Java
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | 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); } } |
C++
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | // 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; } |
Python
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # 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) |
Pascal
1 |
JavaScript
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | <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> |