[编程入门]选择排序 c语言 摘要:解题思路:注意事项:参考代码: #include<stdio.h> int main() { int i,t,j,n; int array[10]; for(n=0;n<10;n++){ …… 题解列表 2021年07月19日 0 点赞 0 评论 258 浏览 评分:4.0
这是杖举吗? 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ enum play {a=-1,b,c}; int p1,p2,x; scanf("%d%d…… 题解列表 2021年07月19日 0 点赞 0 评论 464 浏览 评分:9.9
宝,我今天用switch了 摘要:解题思路:注意事项:1.符号的定义就是%c而不是%d!!!2.输入%d和%c之间要有空格哦!!!3.%c对应的是单个字符 %s对应的是字符串参考代码:#include<stdio.h>int main…… 题解列表 2021年07月19日 0 点赞 3 评论 665 浏览 评分:9.9
sinez之吻----------------------------------- 摘要:解题思路:注意事项:参考代码:#include "stdio.h"int count = 1;int A(int n) { if (count == n ) { printf("sin(%d", …… 题解列表 2021年07月18日 0 点赞 0 评论 572 浏览 评分:9.9
编写题解 1001: [编程入门]第一个HelloWorld程序! 摘要:解题思路:输出注意事项:换行参考代码:111111111111111111111111111111111111111111111111111111111111111111111111111111111…… 题解列表 2021年07月18日 0 点赞 0 评论 318 浏览 评分:0.0
题解 1162: 密码 摘要:参考代码:#include<stdio.h>#include<string.h>int main(){ int x; scanf("%d",&x); getchar(); while(…… 题解列表 2021年07月18日 0 点赞 0 评论 303 浏览 评分:0.0
大哥我不会用链表存储,呜呜呜 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,sum1=0,sum2=0,n,a[100],b[100]; scanf("%d",&n); for…… 题解列表 2021年07月17日 0 点赞 0 评论 454 浏览 评分:7.0
使用三目运算来解决三个数找最大值问题 摘要:解题思路:max{a , b}=(a>=b?a:b) max {max{a, b}, c}= (a>=b?a:b)>=c?(a>=b?a:b):c 三目运算得到的是一个值注意事项:三目运算参考…… 题解列表 2021年07月17日 0 点赞 0 评论 841 浏览 评分:9.9
题解 1032: [编程入门]自定义函数之字符串连接 摘要:package ACM01; import java.util.Scanner; public class acm027 { public static void main(Str…… 题解列表 2021年07月17日 0 点赞 0 评论 364 浏览 评分:0.0