Thursday, December 13, 2018

Character Analysis

Examination Programming Challenge

Write a program that reads a file’s contents and determines the following:
  • The number of uppercase letters in the file
  • The number of lowercase letters in the file
  • The number of digits in the file
  • The number of words in the file
The graphical user interface of this program must include:
  • a text field for input the name of the file
  • the 4 text fields to output data
  • and one button to the command "Start to read a file and to count".

No comments:

Post a Comment

N-point Star in Microsoft Visual Studio Console App

#include <windows.h> #include <cmath> #include <iostream> LRESULT CALLBACK WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam,...