712. 正数

news/2024/11/30 20:28:41/

712. 正数

输入 6 个数字,它们要么是正数,要么是负数。

请你统计并输出正数的个数。

输入格式

六个数字,每个占一行。

输出格式

输出格式为 x positive numbers,其中 x 为正数的个数。

数据范围

输入数字的绝对值不超过 100。

输入样例:

7
-5
6
-3.4
4.6
12

输出样例:

4 positive numbers
#include <cstdio>int main()
{int s = 0;for (int i = 1; i <= 6; i++){double a = 0;scanf("%lf", &a);if (a > 0) s++;}printf("%d positive numbers\n", s);return 0;
}

http://www.ppmy.cn/news/413952.html

相关文章

LeetCode 712. 两个字符串的最小ASCII删除和

LeetCode 712. 两个字符串的最小ASCII删除和 文章目录 LeetCode 712. 两个字符串的最小ASCII删除和题目描述一、解题关键词二、解题报告1.思路分析2.时间复杂度3.代码示例2.知识点 总结相同题目 题目描述 给定两个字符串s1 和 s2&#xff0c;返回 使两个字符串相等所需删除字符…

AcWing 712. 正数

文章目录 AcWing 712. 正数AC代码 AcWing 712. 正数 本题链接&#xff1a;AcWing 712. 正数 本博客给出本题截图&#xff1a; AC代码 代码&#xff1a; #include <iostream>using namespace std;int main() {int count 0;double a[6];for (int i 0; i < 6; i …

Codeforces Round #712 (Div. 2)C. Balance the Bits

原题传送门 题目大意 给你一个01串&#xff0c;询问是否存在满足下列条件的两个合法括号串&#xff1a; 对与两个串在同一位置上&#xff0c;如果在该位置上01串是0&#xff0c;则代表这两个串在该位置上不同&#xff0c;而1则代表相同。 如果有&#xff0c;输出"YES&qu…

Codeforces Round #712 (Div. 2)(A-E题解)

场次链接 后悔啊后悔&#xff0c;当天晚上打的时候工作室网炸了&#xff0c;开场五分钟镜像页面才看到题目&#xff0c;A题读完就想到判断最前面和最后面能不能加就行了&#xff08;字符串渣第一时间没想到直接在原字符串上加&#xff0c;反而去判断s[0]和s[n-1]等不等于’a’…

codeforces 712 div2 ABC

codeforces 712 div2 ABC A. Dj Vu A palindrome is a string that reads the same backward as forward. For example, the strings “z”, “aaa”, “aba”, and “abccba” are palindromes, but “codeforces” and “ab” are not. You hate palindromes because they gi…

Codeforces Round #712 (Div. 2) (题解)

传送门 题目大意&#xff1a; 给定一个字符串&#xff0c;你可以给任意位置插入一个‘a’&#xff0c; 如果可以使字符串不为回文串&#xff0c;那么输出YES并输出 任意满足的情况 如果不可以&#xff0c;输出NO 思路&#xff1a; 如果字符串全为a&#xff0c;则输出NO 否则输…

Codeforces Round #712 (Div. 2)-ABC

A. Dj Vu A palindrome is a string that reads the same backward as forward. For example, the strings “z”, “aaa”, “aba”, and “abccba” are palindromes, but “codeforces” and “ab” are not. You hate palindromes because they give you dj vu. There is …

每日三问-前端(第二十四期)

先来回顾一下上期的问题及答案&#xff1a; 2023年6月15日 1. 问题&#xff1a;在前端开发中&#xff0c;什么是纹理压缩&#xff08;Texture Compression&#xff09;&#xff1f;它在游戏或图形应用中的作用是什么&#xff1f;请解释一种常用的纹理压缩算法。 回答&#xff1…