- 博客(2)
- 收藏
- 关注
原创 输入一行文字,找出其中的大写字母、小写字母、空格、数字以及其他字符各有多少
//问题输入一行文字,找出其中的大写字母、小写字母、空格、数字以及其他字符各有多少#include<iostream> #include<string.h> using namespace std; void string_num(char s[]) { int lenth = 0; int countA = 0; //计数使用,必须初始化,下同 int counta = 0; int countBlank = 0.
2022-04-17 01:15:45 1184
原创 定义一个结构体变量(包括年、月、日),编写程序,要求输入年、月、日,程序能判断该年是否为闰年。
//定义一个结构体变量(包括年、月、日),编写程序,要求输入年、月、日,程序能计算并输出该日在本年中是第几天。注意闰年问题。 #include<iostream> using namespace std; struct Date { int year; int month; int date; };int main() { struct Date A; int day; cout <<.
2022-04-17 00:48:28 2946 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人