Skip to content

Commit f3a417f

Browse files
committed
Подсчёт количества содержащихся в строке прописных латинских букв.
1 parent b49e1be commit f3a417f

7 files changed

+126
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
## Строки
88

99
- [Преобразование строки так, чтобы каждое слова начиналось с заглавной буквы](capitalize-first-letter-of-ru-words/)
10+
- [Подсчёт количества содержащихся в строке прописных латинских букв](count-uppercase-latin-letters/)
1011

1112
## Массивы
1213

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
[Project]
2+
FileName=CountUppercaseLatinLetters.dev
3+
Name=CountUppercaseLatinLetters
4+
Type=1
5+
Ver=2
6+
ObjFiles=
7+
Includes=
8+
Libs=
9+
PrivateResource=
10+
ResourceIncludes=
11+
MakeIncludes=
12+
Compiler=
13+
CppCompiler=
14+
Linker=
15+
IsCpp=1
16+
Icon=
17+
ExeOutput=
18+
ObjectOutput=
19+
LogOutput=
20+
LogOutputEnabled=0
21+
OverrideOutput=0
22+
OverrideOutputName=
23+
HostApplication=
24+
UseCustomMakefile=0
25+
CustomMakefile=
26+
CommandLine=
27+
Folders=
28+
IncludeVersionInfo=0
29+
SupportXPThemes=0
30+
CompilerSet=0
31+
CompilerSettings=0000000000000000000000000
32+
UnitCount=1
33+
34+
[VersionInfo]
35+
Major=1
36+
Minor=0
37+
Release=0
38+
Build=0
39+
LanguageID=1033
40+
CharsetID=1252
41+
CompanyName=
42+
FileVersion=
43+
FileDescription=Developed using the Dev-C++ IDE
44+
InternalName=
45+
LegalCopyright=
46+
LegalTrademarks=
47+
OriginalFilename=
48+
ProductName=
49+
ProductVersion=
50+
AutoIncBuildNr=0
51+
SyncProduct=1
52+
53+
[Unit1]
54+
FileName=main.cpp
55+
CompileCpp=1
56+
Folder=
57+
Compile=1
58+
Link=1
59+
Priority=1000
60+
OverrideBuildCmd=0
61+
BuildCmd=
62+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[Editors]
2+
Order=0
3+
Focused=0
4+
[Editor_0]
5+
CursorCol=2
6+
CursorRow=10
7+
TopLine=1
8+
LeftChar=1
+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Project: CountUppercaseLatinLetters
2+
# Makefile created by Dev-C++ 5.11
3+
4+
CPP = g++.exe
5+
CC = gcc.exe
6+
WINDRES = windres.exe
7+
OBJ = main.o
8+
LINKOBJ = main.o
9+
LIBS = -L"C:/Program Files (x86)/Dev-Cpp/MinGW64/lib" -L"C:/Program Files (x86)/Dev-Cpp/MinGW64/x86_64-w64-mingw32/lib" -static-libgcc
10+
INCS = -I"C:/Program Files (x86)/Dev-Cpp/MinGW64/include" -I"C:/Program Files (x86)/Dev-Cpp/MinGW64/x86_64-w64-mingw32/include" -I"C:/Program Files (x86)/Dev-Cpp/MinGW64/lib/gcc/x86_64-w64-mingw32/4.9.2/include"
11+
CXXINCS = -I"C:/Program Files (x86)/Dev-Cpp/MinGW64/include" -I"C:/Program Files (x86)/Dev-Cpp/MinGW64/x86_64-w64-mingw32/include" -I"C:/Program Files (x86)/Dev-Cpp/MinGW64/lib/gcc/x86_64-w64-mingw32/4.9.2/include" -I"C:/Program Files (x86)/Dev-Cpp/MinGW64/lib/gcc/x86_64-w64-mingw32/4.9.2/include/c++"
12+
BIN = CountUppercaseLatinLetters.exe
13+
CXXFLAGS = $(CXXINCS)
14+
CFLAGS = $(INCS)
15+
RM = rm.exe -f
16+
17+
.PHONY: all all-before all-after clean clean-custom
18+
19+
all: all-before $(BIN) all-after
20+
21+
clean: clean-custom
22+
${RM} $(OBJ) $(BIN)
23+
24+
$(BIN): $(OBJ)
25+
$(CPP) $(LINKOBJ) -o $(BIN) $(LIBS)
26+
27+
main.o: main.cpp
28+
$(CPP) -c main.cpp -o main.o $(CXXFLAGS)
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Problem Statement
2+
3+
Дана строка. Посчитать количество содержащихся в ней прописных латинских букв.
+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
// Подключение заголовочных файлов из стандартной библиотеки:
2+
#include <string> // строка.
3+
#include <iostream> // ввод/вывод.
4+
5+
using namespace std; // использование пространства имён стандартной библиотеки.
6+
7+
int main() {
8+
string inputString; // переменная типа string для хранения данной строки.
9+
getline(cin, inputString); // ввод данной строки пользователем.
10+
11+
int count = 0; // количество содержащихся в данной строке прописных латинских букв.
12+
13+
// Обход всех символов строки:
14+
for (int index = 0; index < inputString.length(); index++)
15+
if (inputString.at(index) >= 'A' && inputString.at(index) <= 'Z') // если очередной символ в диапазоне A..Z, то:
16+
count++; // увеличиваем счётчик.
17+
18+
cout << count; // вывод количества содержащихся в данной строке прописных латинских букв.
19+
20+
getchar(); // пауза перед выходом из программы (программа ждёт ввода любого символа).
21+
22+
return 0; // возврат нуля, что означает успешное завершение программы.
23+
}
24+
36 KB
Binary file not shown.

0 commit comments

Comments
 (0)