繁花似锦分身乏术列今年初发的风格的放过他过分 摘要:解题思路:无注意事项:无参考代码:g=input()g=int(g)if g>=10 and g<=99: print("1")else: print("0")…… 题解列表 2024年07月16日 0 点赞 0 评论 793 浏览 评分:9.9
Java学习小练习 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2024年07月16日 0 点赞 0 评论 411 浏览 评分:0.0
判断是否为两位数 摘要:解题思路:注意事项:参考代码:n=int(input())if 10<=n<=99: print(1)else: print(0)…… 题解列表 2024年03月13日 0 点赞 0 评论 553 浏览 评分:2.0
判断是否为两位数 摘要:解题思路:将输入的整数存在列表中 判断列表长度 就可以得出是否为两位数注意事项:参考代码:while True: try: num = input() num_lis…… 题解列表 2024年02月03日 0 点赞 0 评论 582 浏览 评分:6.0
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2024年01月05日 0 点赞 0 评论 583 浏览 评分:9.9
判断是否为两位数 摘要:参考代码:#include<stdio.h> int main() { int a; scanf("%d",&a); if(a>=10 && a<=99){ …… 题解列表 2023年11月29日 0 点赞 0 评论 357 浏览 评分:0.0
答案之中的答案 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a; cin>>a; if((a>9) an…… 题解列表 2023年11月27日 0 点赞 0 评论 546 浏览 评分:9.9
判断是否为两位数 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a; cin>>a; if(a>=10 &&…… 题解列表 2023年11月13日 0 点赞 4 评论 554 浏览 评分:4.7
2783: 判断是否为两位数 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { long long a; cin>>a…… 题解列表 2023年11月01日 0 点赞 0 评论 444 浏览 评分:0.0
判断是否为两位数 摘要:解题思路:即大于等于10且小于等于99 换成c语言即n>=10&&n<=99注意事项:参考代码:#include <stdio.h>int main(){ int n; scanf("%d",&…… 题解列表 2023年10月04日 0 点赞 1 评论 499 浏览 评分:0.0