FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaRepository/Boris/src/laba17/TestFindWord.java at master · karzhouAndrew/JavaRepository · GitHub
karzhouAndrew
/
JavaRepository
Public
Notifications
You must be signed in to change notification settings
Fork
16
Star
0
Code
Issues
0
Pull requests
96
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
JavaRepository
/
Boris
/
src
/
laba17
/
TestFindWord.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
12 lines (11 loc) · 812 Bytes
Breadcrumbs
JavaRepository
/
Boris
/
src
/
laba17
/
TestFindWord.java
Copy path
File metadata and controls
12 lines (11 loc) · 812 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
package
laba17
;
// Проверка класса FindWord. Первый метод не отрабатывает пустую строку.
public
class
TestFindWord
{
public
static
void
main
(
String
[]
args
) {
String
strTest
=
" This is a special sentences. Thank you 123 ! "
;
System
.
out
.
println
(
"Представленая строка для обрабоки на ангийском: "
+
strTest
);
System
.
out
.
println
(
"Первый метод. Кол-во слов равно "
+
FindWord
.
firstRealization
(
strTest
));
System
.
out
.
println
(
"Второй метод. Кол-во слов равно "
+
FindWord
.
secondRealization
(
strTest
));
System
.
out
.
println
(
"Третий метод. Кол-во слов равно "
+
FindWord
.
thirdRealization
(
strTest
));
}
}
Back
|
FazBrowse Home
|
New Git URL