2783: 判断是否为两位数 摘要:解题思路:注意事项:都是提交成功过的可以直接使用。参考代码:#include<iostream>using namespace std;int main(){int a;cin>&g…… 题解列表 2026年06月05日 0 点赞 0 评论 107 浏览 评分:0.0
判断是否为两位数 摘要:解题思路:题目给出判断一个正整数是否是俩位数,要求是大于等于10(>=)并且小于等于(<=)99第一…… 题解列表 2025年06月07日 4 点赞 0 评论 642 浏览 评分:10.0
C++简单解法 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(void){ int&nbs…… 题解列表 2025年03月04日 0 点赞 0 评论 558 浏览 评分:0.0
编写题解 2783: 判断是否为两位数 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a; scanf("%d",&a); if(a>=10&&a<100) pri…… 题解列表 2024年12月05日 0 点赞 0 评论 717 浏览 评分:0.0
2783普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); if (n >=10 && n<=99) printf("1")…… 题解列表 2024年11月23日 0 点赞 0 评论 571 浏览 评分:0.0
switch语句的两种写法 摘要:解题思路:注意事项:1. n/100==0,说明n<100,例如101/100==1,99/100==0 ,整数/整数==取整数部分的结果 2.要用break语句跳出循…… 题解列表 2024年11月04日 0 点赞 0 评论 635 浏览 评分:0.0
题解 2783: 判断是否为两位数 摘要:解题思路:if 判断注意事项:条件参考代码: int a; scanf("%d",&a); if(a>10&&a<99) printf("%d",1); else …… 题解列表 2024年11月01日 0 点赞 0 评论 599 浏览 评分:0.0
2783: 判断是否为两位数(新手解法) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); if(a>=10&&a<99) { …… 题解列表 2024年10月29日 0 点赞 0 评论 526 浏览 评分:0.0
判断是否为两位数之入门 摘要:解题思路:注意事项:参考代码:while True: try: n=int(input()) print("1") if 0.1<= n/100 <1 else pr…… 题解列表 2024年10月26日 0 点赞 0 评论 828 浏览 评分:9.9
判断是否为两位数 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int x; scanf("%d",&x); if(0<x && x<=1…… 题解列表 2024年08月04日 0 点赞 0 评论 520 浏览 评分:0.0