利润计算C++程序解答 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ double l; cin >> l; if (…… 题解列表 2021年11月11日 0 点赞 0 评论 596 浏览 评分:6.0
1010: [编程入门]利润计算(C语言代码和C++代码都有) 摘要:解题思路: 本题我们可以使用switch来做,这样子做出来更简洁。 不过在这之前,我们要先知道,switch-case结构其实只会判断一次 例如:int a = 0; switch…… 题解列表 2021年11月11日 0 点赞 1 评论 1005 浏览 评分:4.7
1049: [编程入门]结构体之时间设计 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a[12]={31,28,31,30,31,30,31,31,30,31,30,31}; …… 题解列表 2021年11月11日 0 点赞 0 评论 454 浏览 评分:0.0
1030: [编程入门]二维数组的转置 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[3][3],i,j; for(i=0; i<3; i++) { for(j…… 题解列表 2021年11月11日 0 点赞 0 评论 395 浏览 评分:0.0
题解 1029: [编程入门]自定义函数处理素数时尚再无红颜笑 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int j=0,x;scanf("%d",&x); for(int i=2;i>1&&i<x;i++) {…… 题解列表 2021年11月11日 0 点赞 0 评论 367 浏览 评分:0.0
1027wohuihuilaide正确的放马表该是这样 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int a,x,y,b,c; scanf("%d %d",&a,&b);x=a;y=b; while (b!…… 题解列表 2021年11月11日 0 点赞 0 评论 417 浏览 评分:9.9
[编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:#include <stdio.h>struct stu{ char num[100]; char name[100]; int score[3];};…… 题解列表 2021年11月11日 0 点赞 0 评论 400 浏览 评分:0.0
编译器的系统漏洞 摘要:解题思路:直接输入题目要求的数据注意事项:参考代码:#include<stdio.h>int main(){ printf("Glmre\n"); return 0;}…… 题解列表 2021年11月11日 0 点赞 0 评论 1243 浏览 评分:8.0
有手就行的题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ printf(" *\n"); printf(" * *\n"); printf("****…… 题解列表 2021年11月11日 0 点赞 0 评论 823 浏览 评分:2.7
更加煎熬了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[3][3],j,i; for(i=0;i<3;i++){ for(j=0;j<3;j…… 题解列表 2021年11月11日 0 点赞 0 评论 343 浏览 评分:0.0