Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
ProgrammingInTonguesS2
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Mikołaj Warenycia
ProgrammingInTonguesS2
Commits
8a66da97
Commit
8a66da97
authored
4 days ago
by
Mikołaj Warenycia
Browse files
Options
Downloads
Patches
Plain Diff
Upload New File
parent
ef73d855
Branches
main
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ahhfunkcje.h
+25
-0
25 additions, 0 deletions
ahhfunkcje.h
with
25 additions
and
0 deletions
ahhfunkcje.h
0 → 100644
+
25
−
0
View file @
8a66da97
#include
<stdio.h>
#include
<math.h>
#ifndef ahhfunkcje_H_
#define ahhfunkcje_H_
#define G 0.00000000006674;
float
check
(
float
M
,
float
R
){
if
(
M
>=
0
&&
R
>=
0
){
printf
(
"dane poprawne
\n
"
);}
else
{
printf
(
"dane niepoprawne
\n
"
);}
}
float
velocity
(
float
M
,
float
R
){
float
V
;
float
Vp
;
Vp
=
(
2
*
M
/
R
)
*
G
;
V
=
sqrt
(
Vp
);
printf
(
"predkosc ucieczki to %f
\n
"
,
V
);
}
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment