题解 2783: 判断是否为两位数 摘要:解题思路:if 判断注意事项:条件参考代码: int a; scanf("%d",&a); if(a>10&&a<99) printf("%d",1); else …… 题解列表 2024年11月01日 0 点赞 0 评论 630 浏览 评分:0.0
switch语句的两种写法 摘要:解题思路:注意事项:1. n/100==0,说明n<100,例如101/100==1,99/100==0 ,整数/整数==取整数部分的结果 2.要用break语句跳出循…… 题解列表 2024年11月04日 0 点赞 0 评论 670 浏览 评分:0.0
2783: 判断是否为两位数 摘要:解题思路:注意事项:都是提交成功过的可以直接使用。参考代码:#include<iostream>using namespace std;int main(){int a;cin>&g…… 题解列表 2026年06月05日 0 点赞 0 评论 375 浏览 评分: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 评论 607 浏览 评分:0.0
编写题解 2783: 判断是否为两位数 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a; scanf("%d",&a); if(a>=10&&a<100) pri…… 题解列表 2024年12月05日 0 点赞 0 评论 750 浏览 评分:0.0
Java学习小练习 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2024年07月16日 0 点赞 0 评论 441 浏览 评分:0.0
判断是否为两位数 摘要:参考代码:#include<stdio.h> int main() { int a; scanf("%d",&a); if(a>=10 && a<=99){ …… 题解列表 2023年11月29日 0 点赞 0 评论 397 浏览 评分:0.0
2783: 判断是否为两位数 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { long long a; cin>>a…… 题解列表 2023年11月01日 0 点赞 0 评论 484 浏览 评分:0.0
判断是否为两位数 摘要:解题思路:即大于等于10且小于等于99 换成c语言即n>=10&&n<=99注意事项:参考代码:#include <stdio.h>int main(){ int n; scanf("%d",&…… 题解列表 2023年10月04日 0 点赞 1 评论 550 浏览 评分:0.0
题解 2783: 判断是否为两位数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d", &a); if (a>=10&&a<=99) print…… 题解列表 2023年08月17日 0 点赞 0 评论 504 浏览 评分:0.0