blob: 71ad59483e69ac7bbd5587eb74e17e0c79c1d1cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
clear
//Given
r=3.4*10**-14 //m
n=47
q=1.6*10**-19 //C
m=9*10**9
//Calculation
V=m*n*q/r
//Result
printf("\n Electric potential at the surface of silver nucleus is %0.2f *10**6 V",V*10**-6)
|