C++二级题2

数字字符求和

cpp 复制代码
#include<iostream>
#include<string.h>
#include<stdio.h>
#include<iomanip>
#include<cmath>
#include<bits/stdc++.h>
int a[2000][2000];
int b[2000];
char c[2000];
long long n;
using namespace std;
int main()
{
	cin>>c;
	n=strlen(c);
	int q=0;
	for(int i=0;i<n;i++)
	{
		if(c[i]<='9'&&c[i]>='0')
		{
			b[q]=(char)c[i];
			q++;
		}
	}
	int sum=0;
	for(int i=0;i<q;i++)
	{
		sum=(sum+b[i])/25;
	}
	cout<<sum;
	return 0;
}

简单密码

不会
2023.03 二级」进阶的卡莎
不会
合影效果不会
g圆

cpp 复制代码
#include<bits/stdc++.h>
using namespace std;
int main() 
{
	char a[100];int l,s=0;
	gets(a);
    l=strlen(a);
	for(int i=0;i<l;i++)
	{
		if(a[i]>='1'&&a[i]<='9')
		{
			s=s+a[i]-48;  
		}
	}
	cout<<s;
	return 0;
}
相关推荐
算AI7 小时前
人工智能+牙科:临床应用中的几个问题
人工智能·算法
我不会编程5557 小时前
Python Cookbook-5.1 对字典排序
开发语言·数据结构·python
懒羊羊大王&8 小时前
模版进阶(沉淀中)
c++
owde8 小时前
顺序容器 -list双向链表
数据结构·c++·链表·list
第404块砖头8 小时前
分享宝藏之List转Markdown
数据结构·list
GalaxyPokemon9 小时前
Muduo网络库实现 [九] - EventLoopThread模块
linux·服务器·c++
W_chuanqi9 小时前
安装 Microsoft Visual C++ Build Tools
开发语言·c++·microsoft
hyshhhh9 小时前
【算法岗面试题】深度学习中如何防止过拟合?
网络·人工智能·深度学习·神经网络·算法·计算机视觉
蒙奇D索大9 小时前
【数据结构】第六章启航:图论入门——从零掌握有向图、无向图与简单图
c语言·数据结构·考研·改行学it
A旧城以西9 小时前
数据结构(JAVA)单向,双向链表
java·开发语言·数据结构·学习·链表·intellij-idea·idea